home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Tool Chest / Games / Mac Game Developer's Handbook / Graphics / Using Palette Manager Offscreen / Using Palette Manager Offscreen
Encoding:
Text File  |  1993-03-21  |  70.8 KB  |  107 lines  |  [ONLN/HLX2]

  1. GRAPHICS HINTS FROM FORREST
  2.     USING THE
  3. PALETTE MANAGER
  4. OFF-SCREEN
  5.     
  6. FORREST TANAKA
  7. Most people who’ve done any graphics programming on the Macintosh are aware of the Palette Manager, because it’s the documented way to control the on-screen color environment, and perhaps because my cohorts and I in Developer Technical Support keep going on about how right the world would be if everyone used it. In an effort to follow the rules as best they can, some people have taken the Palette Manager so much to heart that they use it not only with windows, but with off-screen cGrafPorts as well—something that isn’t heard about very much. Some of these people have concluded that all the features of the Palette Manager apply just as well to off-screen cGrafPorts as they do to windows. Logical enough, right?
  8. Well, that’s the kick; whether this is logical or not, the truth is that only a small part of the Palette Manager works with off-screen cGrafPorts. Specifically, the pmCourteous usage mode and the pmWhite and pmBlack usage-mode modifiers work fine when they’re used in a palette that’s attached to an off-screen cGrafPort, but the pmTolerant, pmAnimated, and pmExplicit usage modes do not. In this column, I’ll describe how you can take advantage of the Palette Manager features that work off-screen and how you can simulate the features that don’t work.
  9. The pmCourteous usage mode seems pretty useless to a lot of people because it has no effect on the current 
  10.     color environment. But in general, making a palette full of pmCourteous colors is a lot better than hard-coding RGBColors into your code. Instead of hard-coding colors, make a palette of courteous colors—as many entries as you need colors—and save it as a 'pltt' resource. When your application runs, call SetPalette to attach this palette to your off-screen cGrafPort. When you need to use a color while drawing into this cGrafPort, pass the desired color’s palette index to PmForeColor or PmBackColor, and then draw. This is better than hard-coding colors because you or a software localizer can easily change the colors by changing the 'pltt' resource—no code changes are necessary.
  11. The pmWhite and pmBlack usage-mode modifiers are new with System 7; they let you specify whether you want a particular palette entry to map to white or black in a black-and-white graphics environment. By default, colors whose average color-component value is larger than 32767 are mapped to white and other colors are mapped to black. (If you use RGBForeColor, Color QuickDraw also checks to see whether your specified color is different from your background color but maps to your background color; if so, Color QuickDraw uses the complement of the color you specified so that your drawing is visible over the background.) By specifying that a palette entry is pmCourteous + pmBlack or pmCourteous + pmWhite, you can control which colors map to black and to white when there aren’t enough colors available. This applies to palettes attached to off-screen cGrafPorts as well as to palettes attached to windows.
  12. Those are the Palette Manager features that do work off-screen. Now I’ll talk about the features that don’t and what you can do to get the same effect.
  13. The pmExplicit usage mode is handy when you want to draw using a pixel value without knowing or caring what color that pixel value represents. With this mode you can easily show the colors in a screen’s color table, and you can also draw into a pixel image with a specific value even though you specify the color for that value elsewhere.
  14.     
  15.  
  16. When you have a palette that’s attached to an off-screen cGrafPort, pmExplicit colors are interpreted as pmCourteous colors. Instead of using a palette, you should convert your pixel value to an RGBColor and use this as the foreground or background color. Set the current GDevice to your off-screen GDevice so that the color environment is set; then pass your pixel value to Index2Color, which is documented on page 141 of Inside Macintosh Volume V. Index2Color converts your pixel value to the corresponding RGBColor, which you can pass to RGBForeColor or RGBBackColor, and then you can draw. The result is that your pixel value is drawn into the destination pixel image.
  17. Both the pmAnimated and pmTolerant usage modes are used to modify the color environment, and both are interpreted as pmCourteous when they’re in a palette that’s attached to an off-screen cGrafPort. The most important difference between the two usage modes is in the style of color-table arbitration that they do— pmTolerant gives the front window the colors it needs, while pmAnimated additionally makes sure that nothing outside the front window is drawn in its colors. Color-table arbitration doesn’t apply off screen, so the pmAnimated and pmTolerant usage modes can be unified into “I want to change my off-screen colors.”
  18. Changing the colors in an off-screen color environment means changing its color table; the most straightforward way to do this is to modify the contents of the color table directly. That is, get your off-screen color table’s handle and then directly assign new values to the rgb fields in its CSpecArray. You could also assign a whole new color table to the off-screen environment by assigning the new one to the pmTable field of the off-screen pixMap. Either way, you have to tell color     QuickDraw what you’ve done by updating the changed color table’s ctSeed field. The next time you draw into your off-screen graphics environment, Color QuickDraw detects your change by comparing the ctSeed of your changed color table against the iTabSeed of the current GDevice’s inverse table, and it rebuilds the inverse table according to the changed color table. You can update the ctSeed field by assigning to it the return value of GetCTSeed, which is documented on page 143 of Inside Macintosh Volume V. If the 32-Bit QuickDraw extensions are available, you can update a color table’s ctSeed simply by passing the color table to CTabChanged, documented on page 17-26 of Inside Macintosh Volume VI.
  19. If you have a GWorld and you want to replace its color table, you should call UpdateGWorld, passing it a new color table. UpdateGWorld makes sure that all the cached parts of a GWorld are properly updated, which is tough to do any other way. If you don’t pass any flags to UpdateGWorld, it’s within its rights to destroy your existing GWorld’s image. But if you pass the clipPix or stretchPix flag, UpdateGWorld is obligated to keep your existing image, and it tries to reproduce the existing image in the new colors as best it can.
  20. To wrap up, you can use the Palette Manager with off-screen graphics environments, but you’ll only be able to use the pmCourteous usage mode and the pmWhite and pmBlack usage-mode modifiers. But that’s not to cast aspersions on these features, because they can be very handy for both on-screen and off-screen drawing. The pmExplicit, pmTolerant, and pmAnimated usage modes don’t work for off-screen drawing, but there are easy ways to simulate those features without the Palette Manager and without risking future compatibility.
  21.     
  22.  
  23. Áà◊#ˇ ˇˇˇˇ#◊ 
  24. d,     Helvetica
  25. .°dONLNd5öC·+∏^GRAPHICS°dONLNd    BöPÓ*
  26. HINTS FROM°dONLNdOö]Ÿ*
  27. FORREST
  28.     °dONLNdjöu“*    USING THE°dONLNd'vöŞ* PALETTE MANAGER°dONLNd7Çöç‹*
  29. OFF-SCREEN066Õ≤
  30. 77ñòÄ‚‚ÑÂÑÂÿ20⁄◊ˇˇˇˇˇˇÃÃˇˇˇˇôôˇˇˇˇffˇˇˇˇ33ˇˇˇˇˇˇˇˇˇˇÃÃˇˇÃÃÃÃˇˇôôÃÃˇˇ    ffÃÃˇˇ
  31. 33ÃÃˇˇ ÃÃˇˇ ˇˇôôˇˇ
  32. ÃÃôôˇˇôôôôˇˇffôôˇˇ33ôôˇˇôôˇˇˇˇffˇˇÃÃffˇˇôôffˇˇffffˇˇ33ffˇˇffˇˇˇˇ33ˇˇÃÃ33ˇˇôô33ˇˇff33ˇˇ3333ˇˇ33ˇˇˇˇˇˇÃÃˇˇ ôôˇˇ!ffˇˇ"33ˇˇ#ˇˇ$ˇˇˇˇÃÃ%ÃÃˇˇÃÃ&ôôˇˇÃÃ'ffˇˇÃÃ(33ˇˇÃÃ)ˇˇÃÃ*ˇˇÃÃÃÃ+ÃÃÃÃÃÃ,ôôÃÃÃÃ-ffÃÃÃÃ.33ÃÃÃÃ/ÃÃÃÃ0ˇˇôôÃÃ1ÃÃôôÃÃ2ôôôôÃÃ3ffôôÃÃ433ôôÃÃ5ôôÃÃ6ˇˇffÃÃ7ÃÃffÃÃ8ôôffÃÃ9ffffÃÃ:33ffÃÃ;ffÃÃ<ˇˇ33ÃÃ=ÃÃ33ÃÃ>ôô33ÃÃ?ff33ÃÃ@3333ÃÃA33ÃÃBˇˇÃÃCÃÃÃÃDôôÃÃEffÃÃF33ÃÃGÃÃHˇˇˇˇôôIÃÃˇˇôôJôôˇˇôôKffˇˇôôL33ˇˇôôMˇˇôôNˇˇÃÃôôOÃÃÃÃôôPôôÃÃôôQffÃÃôôR33ÃÃôôSÃÃôôTˇˇôôôôUÃÃôôôôVôôôôôôWffôôôôX33ôôôôYôôôôZˇˇffôô[ÃÃffôô\ôôffôô]ffffôô^33ffôô_ffôô`ˇˇ33ôôaÃÃ33ôôbôô33ôôcff33ôôd3333ôôe33ôôfˇˇôôgÃÃôôhôôôôiffôôj33ôôkôôlˇˇˇˇffmÃÃˇˇffnôôˇˇffoffˇˇffp33ˇˇffqˇˇffrˇˇÃÃffsÃÃÃÃfftôôÃÃffuffÃÃffv33ÃÃffwÃÃffxˇˇôôffyÃÃôôffzôôôôff{ffôôff|33ôôff}ôôff~ˇˇffffÃÃffffÄôôffffÅffffffÇ33ffffÉffffÑˇˇ33ffÖÃÃ33ffÜôô33ffáff33ffà3333ffâ33ff䡡ffãÃÃffåôôffçffffé33ffèffêˇˇˇˇ33ëÃÃˇˇ33íôôˇˇ33ìffˇˇ33î33ˇˇ33ïˇˇ33ñˇˇÃÃ33óÃÃÃÃ33òôôÃÃ33ôffÃÃ33ö33ÃÃ33õÃÃ33úˇˇôô33ùÃÃôô33ûôôôô33üffôô33†33ôô33°ôô33¢ˇˇff33£ÃÃff33§ôôff33•ffff33¶33ff33ßff33®ˇˇ3333©ÃÃ3333™ôô3333´ff3333¨333333≠3333Æˇˇ33ØÃÃ33∞ôô33±ff33≤3333≥33¥ˇˇˇˇµÃÃˇˇ∂ôôˇˇ∑ffˇˇ∏33ˇˇπˇˇ∫ˇˇÃêÃÃÃúôôÃÃΩffÃÃæ33ÃÃøÃÿˇˇôô¡ÃÃôô¬ôôôô√ffôôƒ33ôô≈ôôΔˇˇff«ÃÃff»ôôff…ffff 33ffÀffÃˇˇ33ÕÃÃ33Œôô33œff33–3333—33“ˇˇ”ÃÑôô’ff÷33◊‚77ñ€¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨ōōŞ¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨ ōōōōōōިAŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ˆÅ¨˛Å¨˛Å¨Å∫ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÂÅVÚÅ“1¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨}ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ˆÅ¨ˆÅñ˛Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛ÅD¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨ˆÅ¨˛Å¨˛Å¨ªÅÿ¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōި ōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ōōŞ¨Å˛¨%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å,¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨¯Å≥gŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨¸Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨˙Ũ˛Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨’Å‘E¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިŨŨŨŨŨŨŨŨŨŨŨŸ¨ŨŨŨŨŨŨŨŨŨŨŨŨ˛Å6¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˙Ũ˛Å¨ˆÅ¶˛Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛ÅF¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˙Ũ˛Å¨˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˛Å¨œÅ·¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōōōōōōōŞ¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Ũ¨◊˝¨ŨÅÅ˝¨ōިKŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨ÅÆŨŨŨ˛ÅY¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¸¨V¨Å¨˝Å˝¨Ũ˛Å¨Å¨Å¨˛Å¨Å¨Å¨ˆÅ¨˛Å¨Å¨¸Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˙Ũ˙Ũ·Å’5¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ōōިōōިōōŞ¨Å˛¨Å˛¨Å˘¨◊¨¨Å¨˛Å¨˛Å¨Å¨Å¨¨ÅިIŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˙Ũ˙Ũ˛Å¨˛ÅóŨŨ˛Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å5¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å◊¨¨˜ÅVÅŨ˘Å    ¨¨Å¨Å¨Å¨Å¨ÚŨ˛Å¨˙Ũ˛Å¨ÍŨ˛Å¨˛Å¨„ÅŒ¨Å¨Å˛¨ ōōōōōōި ōōōōōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Å¯¨ Ũ¨◊¨◊¨◊¨ÅŨ◊˛¨˛Å˛¨Ũ¨ÅŸ¨ōōިÅ˙¨ōިQŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸Å∞JōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨˛Å¨ÅÅVÅVÅV˚¨˙ÅVÅŸ¨ōōިŨŸ¨ŨŨŨŨ˛Å¨˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˛Å¨˙ŨÂÅ 
  33. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōōōōōōōōōōōōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨ŨÅÅV˝Å˝VŞV˙¨Å¨Å˝¨Å˙¨◊¨◊¸¨◊˝¨Å˛¨MŨ¨ÅŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˙Ũ˛Å™˛Å$¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊˝¨
  34. ŨŨÅÅVÅVÅV¸Å¸V◊¸¨Å˛¨Å¯¨◊˝¨Å˙¨ ŨŨŨŨŨŨ˛Å¨˛Å¨ÚŨ˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÂÅVÅÃ¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˝¨◊˝¨ÅŞV¨Å¨¨ÅVÅÅ˚¨˛ÅV¨¨˝◊¨¨◊◊¨¨◊◊˝¨¸◊¨◊˙¨◊˘¨GŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨¸ÅøDōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōިÅ¨Å˝VÅŨŨ¨◊˝¨Ũ˝Å    ¨¨ÅÅVÅŨ¨◊˛¨◊¨˛◊
  35. ¨◊¨◊¨◊¨◊¨◊¨◊¨◊˜¨Å˛¨/ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ÂÅ…
  36. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨ōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å˝¨◊¨¨˛Å¨VÅŨŸ◊¨◊¨◊˛¨    ◊¨¨Å¨◊◊¨◊¨ˆ◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¸¨=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨ÚÅ∂BōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōިÅÅ+˝Å¸¨Å˝¨◊¸¨◊¨◊¸¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨(◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˙Ũ˛Å¨„ۍōōōŞ¨Å˛¨Å˛¨Å˛¨ōōި ōōōōōōŞ¨Å˛¨Å˙¨Å˘¨◊˛Å¨Å¨¨◊¨◊¨˛◊¨◊˛¨◊¨◊¨¸◊¨ÅŨŨ◊¨Î◊¨˙◊¨◊¨◊˚¨ōŞ¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨¸Å¬EŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅŨÅŨ˛Å¨˛Å¨Å¨˛Å¨¨◊¨◊¨¨Å¨ÅÅVŨ◊¨◊¨¨Å¨¨◊¨˛◊¨¨◊◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊˚¨'ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˙ŨÂÅ¿¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨(ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨ÅިVÅV˛Å¨¨Å¨Å˙¨Å˝¨˛◊˛¨◊¨¸◊¨˚◊¨¨Ù◊¨◊¨◊¨◊¨◊¨˙◊¨◊¨¨Å¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ˆÅ¨˛Åº?ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˙Ũ¸Å¨Å¨¸Å˛¨ŨŨ¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊˝¨ ŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨·ÅVÅÆ˛¨Å˛¨ōōŞ¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŸ¨˛Å˛¨˙ōި˛Å¨¨◊¸¨◊¨◊ÅÅV˛¨˝◊¨◊¨Ë◊¨◊¨¯◊¨˛◊¨¨Å¯¨Å˛¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˙Ũſ7ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¸Å¨˛Å    ¨Å¨Å¨VÅVÅŞ¨˛Å¨Å˛¨Å˝¨ ◊¨◊ŨÅŨ◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˙◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨ŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˙ŨÈŶ:¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨¨◊ÅÅVÅV˝Å¨ÅÅV¨ÅŸ¨◊˛¨◊˛¨⁄◊¨˛◊¨˜◊˛¨ōި-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ÚŪCŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ◊◊¨ÅÅV¨¸VÅŨ˛Å˛¨Å¨Å¨Å˝¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊ ¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨€ÅÆ¨Å¨Å˛¨ōōŞ¨Å˛¨Å˛¨ōōި ōōōōōōŞ¨Å˛¨Å˛¨ŨŨ¨˛◊ ¨¨ÅÅ+ÅÅVVÅÅVިÅVVÅŞ¨—◊¨◊¨¸◊¨˙◊¨¨Å¨Å˛¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨Å¨˛Å¿=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨◊˛¨ÅVV˛Å¨˛Å¨Åި◊¸¨ ◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊˝¨◊◊¨˛◊¨˛◊˝¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨·Åù5¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Ũ¨◊¨˚ÅVŨ¨◊¸¨˝Å¨¨◊¨¯◊¨Ï◊¨Ó◊¸¨ˆ◊˝¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˙Ũ˙Ũ˛ÅµŨŨŨŨ˛Å:¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨¨Å¨ÅÅVÅVŞVÅŸ¨ ŨŨÅ◊¨◊¨◊¨◊˛¨◊˛¨$◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨”Å´˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨
  37. Ũ¨◊¨◊Å◊¨¨Å¸¨˛Å¨Å˝¨◊¨◊¨˛◊¸¨◊¨¨Å⁄◊¨◊˛¨◊¨ı◊¨Å˛¨5ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨¸Å¿=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨◊¨ÅŨ˛Å¨Å˝¨◊¨¨Å˝¨◊¨◊˝¨˛Å¨˝ÅV¨¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨¨◊◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˙ŨÂÅÆ1¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˝¨◊¨¨V˛ÅV˛¨Å◊¨¸◊¨◊˛¨◊˝¨Ũ¸Å¨¨Í◊¨◊¨◊¨◊¨◊¨ˆ◊/¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˙Ũ˛Å¨˛Å¨˛Å¨˛Å∑4ōōōōōōōōōōōōōōōōōōōōōōōōōōިŨŨŨ˛Å˝¨◊¸Å˛¨Å˝¨◊˝ÅV˝Å¨¨˛◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨¨Å¨¨◊¨◊¨˛◊¨◊¨◊¨˛◊ŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨¸Å¨¯Å¨„ņ ¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōōōōōōōōōŞ¨Å˛¨Å˛¨ ŨŨŨ¨◊¨◊◊¨¸Å˛¨ŨŨŨ¸Å¨Åň¨˛◊¨‹◊¨¸◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨¸Å¬:ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ◊¨¨Å¨V˙Ũ¨VÅVV˛Å˛¨Ũ¨◊¸¨◊˛¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÂÅû:¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨ÅV¨˛Å¨Å˝¨◊˝¨ŨŨب‘◊¨◊¨◊¨˛◊¨Ú◊1¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˙Ũ˛ÅøŨŨŨŨ˛Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å
  38. ¨Å¨Å¨Å¨Å¨¨◊˛Å¨˛Å¨Å˛¨ŨŨ¨Å˝¨¸Å¨¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊ ¨◊ŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨flÅö¨Å¨Å¨Å¨Å˛¨ ōōōōōōިōōިōōŞ¨Å˛¨
  39. ŨŨ¨◊¨◊¨◊Ş¨Å˝¨ÅÅı¨◊¨˛◊¨◊¨“◊¨Î◊2¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨Åπ
  40. ŨŨŨŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¸¨Ũ˛Å¨˝ÅV¸Å¨◊˙Ũ¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˙◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨ÅŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨¸Å¨˛Å¨ÂÅò9¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å◊¨◊¨◊ōިŨÅÅVÅV¨˛Å◊¨˛◊¨˙◊¨»◊¨Ú◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨˛Å¨˙Åπ˛Å¨˛Å¨Å¨Å¨˛Å!¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨˜Å!VÅÅV¨ÅŨ¨Å¨¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˙Ũ„Åö¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōōōōōōōŞ¨Å˛¨Åˆ¨ Ũ¨ÅŨV¨VŨ¨Å˛¨◊◊¨◊¨◊¨◊¨¸◊˛¨˛◊¨˛◊¨≈◊˛¨5ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸ÅƒŨ˛Å¨˛Å+¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨ÅŨ¨˝Å◊+ÅŨÅÅV¨ÅŨ◊¨◊¨◊¨◊¨◊¸¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨ÅŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨ÂÅù%¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨    Å¨Å¨Å¨Å¨Å◊˝¨Å˝¨ÅŨŨŨ˛Å˛¨Å˛¨Å˝¨◊¨˝◊¨¨˛◊¨¨◊◊¨¬◊%¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˙Å¥˛Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨˛Å¯¨Ũ˛Å¨ÅÅVÅV¨V˚Ũ¨◊¨◊¨◊¸¨◊¨◊◊¸¨◊◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÚŨÎÅ™˛¨ōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Åˆ¨ŨÅ◊Ũ˛Å
  41. ¨ÅÅVVŨ◊◊¨◊¨◊¨˛◊¨Å¨¸◊Å◊¨˛◊¨Ú◊¨˛◊¨˛◊¨‹◊¨¨Å¨Å¨Å˛¨Å˛¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ÅΔ5ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ◊ŨŨ˛Å
  42. ¨Å¨Å¨¨ÅŨŨ˛Å˚¨◊Å¨Å˝¨
  43. Ũ◊¨◊¨◊ŨÅ◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊◊˛¨ŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å¨¸Å¨ÈÅ™3¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å◊¨¨◊¸¨ŨÅ◊¨¨Å¨Å¨Å¨Å¨Å˛¨ōōިŨ¨¸◊¸¨Ù◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨fi◊1¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨¯Å≤ŨŨ˛Å'¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨Å˛¨◊V¨¨◊¨¨¸Å¨¸Å¨Å¨ÅÅV˛¨Åި◊¨◊¸¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¸¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨˛Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨◊ŵ ¨Å¨Å¨Å¨Å¨Å¨Å˛¨$ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ◊¨¨ÅިÅ◊◊¨¨◊Ũ˝Å¨¨Å¨Å¨¸Å¨˛Å¨¨˛◊¨◊◊¨¨◊¨◊¨¯◊
  44. ¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨fi◊˝¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸Å≠Ũ˛Å¨˛Å(¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅŨ◊Å◊¸¨˛◊˚¨Å◊ŨVÅŨ˙Å˚¨◊¨◊¨¨Å˝¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨˛Å¨Å¨›Å∑/¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨◊˛¨˛Å˛◊¸¨◊˝¨V˚ŨŨÅ◊¨¨Å◊¨◊¨◊¨◊Å◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨‡◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å°˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨Å˙¨    Å¨¨◊ÅŨ◊¨¨¸Å
  45. ¨VÅŨVÅŨÅ◊˛¨˛◊˛¨◊ŨŨ¨◊¨◊˛¨◊¨◊¨◊˛¨◊Ó¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊ŨŨ˛Å¨˛Å¨˛Å¨’ÅVŵ¨Å¨Å¨Å¨Å˛¨Å˛¨ ōōōōōōŞ¨Å˛¨ōōި
  46. Ũ¨◊¨◊¨◊¨◊Å˝¨◊¸¨◊¨ÅŨ˛Å˝¨◊¨◊¨˙◊¨◊˛¨¸◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊˛¨◊¨fi◊˝¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨ÅØ,ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŸ¨Å◊¨ÅŨ¨◊Å˝¨ÅŨ˝Å¨◊¨◊¨˛◊¨˛◊¨◊¨◊ިÅ◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊ͨ◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨˛◊ ¨◊ŨŨŨŨŨ˛Å¨˛Å¨¸Å¨Å¨˛Å¨˛Å¨Âű.¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊˛¨◊¨¨Å◊˛¨◊¨¨Å˝¨◊¨¨Å¨Å˝¨◊¨◊◊¨◊◊˙¨˛◊¨˛◊
  47. ¨◊¨◊¨◊¨◊¨◊¨◊¨◊ˆ¨◊¸¨◊¨fi◊-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å•˛Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨˛Å˙¨Ũ¨◊˝¨˚ÅVÅVV˚¨Å¸¨
  48. ŨŨŨ¨◊¨◊¨◊¨◊˛¨◊Ò¨Å˙¨Å˝¨◊¨◊¨◊¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨„Å© ¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިōōިŨŨŨŨÅ˙¨Å˙¨Å˜¨ÅŨ◊¨¨◊˝¨ōިÅ◊¨¸◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊ˆ¨◊¨fi◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨ÅØ-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ◊˛Å¸¨VŨ◊ōōި    Å¨◊◊¨◊¨¨Å◊˙¨
  49. ◊¨◊¨◊¨◊¨◊¨◊˙¨◊˛¨◊Ò¨Å˛¨Ũ¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊˝¨ŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÂÅ´2¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å˛¨Å˝¨◊˝¨ÅŨ◊˛¨˙◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊Ó¨‡◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛ÅóŨŨ˛Å¨˛Å¨Å¨Å¨˛Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨¸Å¨ÅÅV¸ÅV˛¨˝ÅV˚Å¨Å˝¨◊¨◊˛¨
  50. ◊¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊¨◊̨Å¨Å˝¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊ŨŨ˛Å¨˛Å¨œÅ¥¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިōōŞ¨Å˛◊¨¨Å¸¨V◊˛Å¨Å¨Å¨Å¨Å˛¨ Ũ◊◊¨◊◊¨¨◊¨◊¨˙◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¸¨◊¨◊¯¨‡◊˝¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨Å°-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨◊˚¨Å˛¨V˝Å˜¨◊¨◊¨◊◊˝¨◊˛¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊˛¨◊Ì¨Å˝¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊ŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˙Ũ·Å£)¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨˛◊¨Å˛¨ÅŨÅŨ◊¸¨˛◊¨◊¨˛◊¸¨
  51. ◊¨◊¨◊¨◊¨◊¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊Ó¨fl◊¸¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å¨˙Å£˛Å¨˛Å(¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨¨˛Å¨Å˛¨Å˝¨◊¨◊¨◊˛¨◊¨◊¨◊¨¨Å˝¨◊¸¨◊¨◊¨◊·¨ ŨŨŨ¨◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨¨Å¨Å¨¸Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨„Å≠¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨ŨŨÅ˙◊
  52. ¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨¨Å˛¨ÅŨ◊¨◊¨◊˛¨¸◊¨◊˛¨◊¨◊¨◊¨◊˙¨◊˙¨◊˛¨◊¯¨◊¨‡◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨¸Å©Ũ˛Å¨˛Å,¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊˛¨˛◊¨◊˛Å˛¨Å¸¨Å◊¨◊˛¨◊˝¨Å˛¨Å˙¨ÅÓ¨Å˚¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨◊¨¨Å¨Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨˙ŨÂŧ%¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ŨÅ˙◊¨¨˛Å¨Å◊¨◊¨˝◊¨¨◊¨◊◊¨¨◊¨¨Å¨◊¨Å◊¨◊¨◊¨◊¨◊˜¨Å˛¨ÅȨ◊¨‚◊¨◊˝¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å§˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨◊˝¨ŨŨ˛Å˘¨◊¨◊˝¨˝Å¨¨Å¨¨◊˘¨˛Å¨˙ōōōިň¨Å˛¨Å˝¨"◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨flÅ®¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨ŨŨ¨◊¨˛◊¨¨Å¨Å¨¨˛◊¨◊˛¨¸◊˝¨˛Å¨◊¨Å¨¨◊¨◊˚¨¸Å¨¸Å¨Å¨Å˜¨◊Ú¨◊¨‰◊-¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨Å≥1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ◊¨◊¨◊˝¨Ũ¨◊¨◊¨¨V¨◊◊¨¨Å˛¨ÅÅVŨ¨ÅÅ˚¨Å¨Å¨ÅÅVÅV˛ÅV˚ŨŨŨÅÚ¨Å˚¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊ ¨¨Å¨Å¨Å¨Å¨Å¨˛Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨ˆÅ¨ÌÅè!¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨ÅÚ◊ÅVV¨Å¸¨VÅÅ◊¨VިŨ˛Å¨Å¨ÅŞV˘Å˛¨Å¨‰◊-¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¯Å¨˙۞ō˛Å)¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨V+˛VÅÅVV¨¨◊ÅVŨÅÅVÅVÅV˛ÅVÅVV+˝V˝Å ¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å¨Å˝¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨Å¨˛Å¨˛Å¨Å¨Å¨¸Å¨Å¨›ÅVÅß ¨Å¨Å¨Å¨Å¨Å¨Å˛¨ ōōōōōōŞ¨Å˛¨Å˛¨ŨŨŨ¨¯◊¨˛◊¨◊¸+VV˙Ũ¨ÅÅVÅVÅV˛ÅVÅVŞVÅV˝Å˛¨Å¨Å˘¨◊¨◊˛¨◊¨◊¨◊¯¨◊¨Ê◊-¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ˆÅ¨¸Å©Ũ˛Å¨˛Å!¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨˛◊¨˛◊¨˛◊¨◊¨+¸ ++V+VV¨ÅÅVV+¸VÅŞVŸV˝Å¨Å¨Å¨Å¨Å„¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÌÅV˙ÅVÅVÅú¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިŨŨÅ◊¨ı◊¨++¸+++V˛+¸VÅVVÅVŞVÅV˝Å¨Å¨Å˘¨◊¨◊¨◊¸¨◊˘¨Å˚¨◊¨Ë◊#¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˙ŨÔÅV®˛Å<¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å◊¨◊¨◊¨◊¨◊¨◊¨◊Å+ˆ˛+VV+˘VÅVŞV    ÅŨŨŨŨÅ˚¨◊˛¨◊˜¨Å¨Å˘¨ ◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨Å¨˛Å¨˛Å¨˛Å¨·ÅV˛ÅV˛ÅVÅVÅVÅë¨Å¨Å¨Å¨Å˛¨ōōިōōŞ¨Å˛¨Å˙¨Å˘¨ı◊¨+˛+˛+V+V+˝VÅVÅVŞV˛ÅV˝Å˘¨◊¨◊¨˙◊¨◊¨◊¨◊¨◊Ù¨Ë◊'¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¸Å¨Å¨ÅÆ6ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ◊◊¨◊¨◊¨˛◊¨◊Ş+V++˛VÅVVÅŞVÅVŸV˙Å˙¨◊¨◊¨ˆ◊˘¨Å˛¨Å˘¨˛◊¨˛◊¨˛◊¨˛◊¨˛◊#¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÌÅV˙ÅVÅVÅ¢¨Å¨Å¨Å˛¨ōōōōōōōōōōōōŞ¨Å˛¨Å˛¨ŨÅı◊ÅV˛+V+VVÅōŞ¨Å˛¨˝ÅVÅVÅV˝Å¨Å¨Å¨Å˛¨Å◊¨◊¨◊¯¨˛◊¨◊˛¨◊ˆ¨Ï◊¨¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨ÎÅVƒŨŨ˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨◊◊¨◊¨◊¨◊¨◊V++++˝V¨Å¨¨◊¨◊VÅ˙VÅVVŨŨŨŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˚¨◊◊˘¨Å˝¨.◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊ŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ıÅV˙ÅV˙ÅVÅVÅVÅ∞ ¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިōōިōōŞ¨Å˛¨Å˛¨ŨÅ◊¨˘◊Å++V˛+VŨ¨◊¸¨ÅŸ◊¨¨Å¨Å¨Å◊˝¨◊◊¨˛◊¨◊¨◊¨˛◊¨◊¨◊¨◊˙¨◊˛¨◊˛¨◊¨˛◊˛¨˙◊¨ˆ◊¨¨Å¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨËÅ¥Ũ˛Å)¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˚¨◊¨˛◊¨◊V++˛VÅV+VVÅÅ˝¨◊˛¨˛◊Å¨Å¨Å˘¨◊¨◊˛¨◊¨◊¨◊¨◊˜¨Ũ¨◊¯¨◊¸¨◊¨˛◊¨◊¨◊¨◊˛¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨ÈÅV˛Å∏%¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨˙◊
  53. Å+VÅ+V+VVÅÅ¨Å˝¨◊¨◊¨◊¨˛◊¨¨Å˝¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨◊˛¨◊˛¨◊¸¨ˆ◊¨◊˛¨◊ި%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÚŨˆÅæ˛Å¨Å¨Å¨Å¨Å¨˛Å2¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨◊¨◊¨◊VVÅ+˛    ++V+ÅVÅÅ¨Å˘¨◊¨¨Å¨Å¨¨◊˙¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊˛¨◊¸¨◊Å¨Å˝¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨    Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨ÁÅVÅV˛ÅVŵ¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިōōŞ¨Å˛¨Å˛¨Å˚¨¸◊¨¨V++˛++˛V˛Å˝¨◊¸¨◊¨V+ÅÅ˝¨◊¨◊¨◊¨◊¨˛◊¨¯◊¨¯◊¨◊ÅŨ◊˙¨¸◊¨◊¨˙◊Å◊¨¨Å˛¨%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˙Ũ¯Å∂2Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨◊¨◊¨◊+˛+˝+V¸Å¨Å˙¨˝Å˛V˛Å¸¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊+˛¨Å˚¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨ ŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å¨˙Ũ˛Å¨ÌÅV˙Ũ!¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Åˆ¨Å˙¨◊◊VÅ+˝+VŨ¨◊¨◊¨¸◊¨◊¸¨Å˝+VÅ◊˝¨◊¨˛◊¨˙◊¨◊¯¨◊¨◊¨¨◊Vˆ¨˛◊¨◊¨◊¨¸◊˝¨'ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å¨Å¨ÚÅπŨŨ˛Å¨Å¨Å¨˛Å¨˛Å1¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨+◊+++Ũ˛◊˛¨◊¨◊¨◊¨◊˝¨    Å¨Å+++VV◊˙¨◊¨◊¨◊¨¨Å¨˛Å¨Å¨Å¨Å¨¨◊˝¨Å˛¨Å˛¨ŨŨŨ¨◊¸¨◊¨◊¨◊¨¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨›ÅV˛ÅVÅ¡¨Å¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Åı¨◊˛Å
  54. ◊++++¨◊◊¨¨ÅÅV¸◊¨˛◊¨¨˛Å¨+VŨ¨◊˛¨◊¨◊¨◊˛¨◊˝¨Å¨Å˝¨◊˘¨◊¸¨Å˛¨Ũ¨˛◊˛¨◊¨◊¨˛◊˝¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Ùź.ōōōōōōōōōōōōōōōōōōōōōōōި ŨŨŨÅÅV¨¨V˛++VV˝++VVÅVÅŨŨÅÅ+VV++¨Å¨¨◊¸¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨ŨÅ◊ިŨŨŨŨ¨◊¨¨Å¨¨◊˛¨◊˝¨ŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨·ÅV˙Ū%¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨
  55. ŨV++V¨◊+V++˙++VVŨŨ¨VV+V¨Å¨VÅŨÅ◊Å◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨Å¨Å¯¨Å¨Å˝¨    ◊◊¨Å¨Å◊¨◊¨˛◊˚¨%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÊŨ˛Å3¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨+¨¨++ˆ++ÅÅ˝¨Å+VV¨Å¨¨˛Å˛¨Å˙¨ŨŨŨ˚ÅVÅVÅV˝Å¨Å˛¨Å¨Å¨Å¨Å¨Å¸¨ÅŨ◊¨◊¨◊˝¨    Å¨Å¨Å¨Å¨Å¨˛Å¨˙Ũ˛Å¨·ÅV˛ÅV˛ÅVÅ≤˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Åˆ¨Å˝¨◊¨VŨV+˛+˛˝VÅŨ¨◊¨◊ŞV Å◊Ũ¨ÅVÅÅ◊◊˝¨◊˝¨Ũ˚ÅVÅVÅV˚Ÿ¨Å˛¨Ũب˛◊¨◊◊¨¨◊¨¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨¸Å¨Å≠=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨV¨VV˛+˛+Å˚¨ÅÅVV++˛
  56. ¨◊◊VÅ+VVŨ◊¨¨Å¸¨˚ůVÅVÅŨŨŨŨŨŨŨÅ˙¨#Ũ¨◊¨¨Å¨Å◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨›Åº¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˙¨Å˛¨ ŨŨ¨Å¨ÅV+˛+V+¸V+V+++˝¨VVŞ+ÅŨ¨◊˛¨◊◊¨Å¨˝Å˙VÅV˝Å¨Å¨Å¸¨ŨŨů¨◊◊¨◊˛¨(◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨ÚŨ˙űŨŨ˛Å5¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨VÅÅ˝+++¸+˜
  57. V¨+V+VÅŨ¨◊˛¨◊¨¨ÅÅVÅ˚V+VVÅV˚ŨŨŨ˛Å¨Å¨Å¨Å˛¨ŨÅ◊˝¨Å˛¨ŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨›ÅVÅߍōިōōިōōިōōŞ¨Å˛¨ÅÚ¨Å˚¨ÅŨ+˛++˙+˙ +◊++VV++VÅ˝¨¸◊˚ÅVŸV˚Å ¨Å¨¨Å◊¨Å¨Å¨ÅÚ¨ Ũ¨◊¨¨Å¨Å¨Å¨Å˛¨%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˙Ũ˛Å¨¯Å©    Å¨Å¨Å¨Å¨Å¨˛Å0¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¨V¨+Ó++V¨+V˛++ÅŞ¨◊˛¨Ũ˝ÅV˛ÅVÅVÅV˚Å
  58. ¨Å¨V◊ŨŨŨŨÅ˙¨Å˛¨Å¸¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¸Å¨˙ŨÂŨ¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ ōōōōōōŞ¨Å˛¨Å˛¨Å˙¨Å◊+◊V+    ++ÅÅVV+˝VV˝¨◊◊¸¨ŨÙŨŨŨŸ¨ŨŨÅı¨◊˚¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨ˆÅö˛Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å*¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅÅVÅÓ++¨++˝++ÅŸ¨◊¸¨ÚŨ˛Å
  59. V◊ÅōōōōōިŨ¨◊˘¨ŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˙Ũ·ÅVŵ¨Å¨Å¨Å¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˙¨ÅÔ¨Ũ+Å+˙+˛++˛+ÅV++¸VV¨Å¨¨◊¨˛◊¨◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅŨ¨Å¨ÅÛ¨◊¨◊¨◊¨◊˚¨Å˛¨Å˛¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¯Å±=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅ+¨Vˆ+˛+¸+¨+V¸++Vōި$ÅÅ◊◊¨◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨ÅÅ+◊ŨŨŨŨŨÅ˚¨◊˘¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨·Å¡#¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¸¨Å˙¨Å˛¨Å˛¨Å◊¨V+˛+˛+++˝+˛V◊ÅVV+¸VVÅŞ¨    ÅÅVÅ◊◊¨◊¨◊˚¨Å¸¨
  60. ÅV+◊ŨŨŨÅı¨◊¨◊˘¨Å˛¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˙Ũ˛Å¨˛Å¨˛Å¨˛Å¶=ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨Åů˚+˛VÅV¨Å˛+¸+VÅŨŨÅÅVÅŨ¨◊˛¨◊˘¨ŨV+V◊Ũ˛Å¨Å¨Å¨Å˛¨Å˚¨◊˚¨ŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨€Å∂¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ÅÓ¨ÅÅÅ+˛++˚VÅVÅÅV¨¨+V˙+VÅŞ¨Ũ˛Å˝¨◊◊¨Å¨Å¨Å¨Å¨VÅ+Å◊◊˚¨Å˛¨Å˚¨◊˛¨◊¨◊Û¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸Åø?ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅV˛++˘VÅVV¨¨VÅ+˚+VÅŞ¨Å˛¨ŨŨÅ◊¨˛◊
  61. ¨¨Å¨Å¨Å¨¨◊◊˛¨Å¨Å¨Å¨Å¨Å˛¨Å˘¨˛◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˙ŨÌÅ¥¨Å¨Å¨Å˛¨ōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨Ũ¨˛Ũ++VVÅ˚V    Å¨¨Å¨¨+˛VVÅÅı¨˛◊¨ˆ◊¨◊˚¨ōިÅ˚¨◊˛¨˝◊˛¨Å˙¨ōōިŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨˛Å¨ˆÅ¨;ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˝+◊++V˙˝¨◊¨◊˛˛+VÅÅ˘¨˛◊    ¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊˘¨
  62. ŨŨŨŨŨŸ¨Ũ◊◊˝¨ŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˙Ũ·ÅVŪ˛¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Åı¨Å++¨ÅÅ++++VÅ˘◊Å+ÅŨ˛Å¨¨◊¨◊¨¨˝◊¨˛◊¨˛◊¨˛◊    ¨◊¨◊¨◊¨◊¨◊Ú¨◊¨◊˛¨˛◊˜¨Å˛¨Å˛¨Å˛¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸Å…>ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨Å+˝+V˝¨˛◊¨◊¨◊¨◊¨◊˛¨˛◊¨◊¸¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˜¨ ŨŨŨŨŨŨÅ˚¨ ◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ıÅæ¨Å˛¨ōōިōōިōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å¸¨++++VŨ¨◊¨◊¨˛◊¨◊¨¨˛VÅŨ¨◊¨ˆ◊¨˛◊¨˙◊¨◊¨◊¨◊Ó¨◊˛¨◊◊¯¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å∏OŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅÅ++++VVÅŨ¨◊¨◊˛¨
  63. ÅVV++VVŨ◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˜¨Å˛¨ŨŨŨŸ¨Å˛◊˝¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨fl۲¨ōōōōōōōōިōōިŨŨŨV˝+VVÅŨ¨˛◊¨¨ÅÅVŸ+VŨ¨◊¨◊¨¯◊¨◊¨◊¨˙◊¨◊¨◊¨◊Ú¨◊¨◊˛¨◊ҨŸ¨3ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å∑HŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨV+++VVÅV˝¨
  64. ◊¨¨ÅÅVV+++++˛Å ¨◊¨¨Å¨¨◊¨◊¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊ı¨ŨŨÅ˚¨◊˝¨#ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨·Å¡¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōިŨŨŨŨÅÚ¨Å˛¨Å˛¨Ũ¨Å+V+VVÅŨŨ¨◊˛¨ÅVV+V¸+$VVÅÅ◊◊¨Å¨Å◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊Ú¨◊˛¨◊˚¨Å˙¨Å˛¨Å˛¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛ÅÆDŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨++VV˝Å¨Å˛¨ÅÅVV˚+ ++VVÅŨVÅVÅب◊¨◊¨◊¨◊¨◊Ҩň¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÈÅVű˛¨Å˛¨Å˛¨ŨŨÅ˙¨Å˙¨Å˛¨Å˛¨Å˙¨ÅÒ¨◊V+VÅVÅŸ¨
  65. ŨÅÅVV+V++˝+˝VÅVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊˛¨◊¨◊¨◊˙¨◊˛¨◊Ô¨Å˛¨Å˛¨ōōި%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å∂>ōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōި+V˝Å¨Å¨ÅÅ˝V˝++++V¸Å˝¨◊¨◊¨◊˛¨◊¸¨◊¨◊¨◊¨◊ͨ◊˝¨Å˛¨+ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨ÒÅ…¨Å¨Å¨Å˛¨ōōōōōōōōŞ¨Å˛¨Å˛¨ŨŸ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˝¨ ++VVÅVÅŨÅÅVÅ˝V+++VŨ◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨¯◊¨◊¨◊˙¨◊¨◊¸¨◊¨◊˘¨Å˙¨Å˛¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛ÅªHŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨV++V+VV˛ÅVVÅVVÅVV+ÅŨ¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊˝¨Ũ◊◊¨˛◊¨˛◊Ó¨◊¸¨&◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨ÎÅø˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Å˛¨++VV+VVŞV¨Å˛¨Ũ¸◊¨¨◊ŨÅ◊◊˛¨Å˛¨Å˝¨◊¨˙◊
  66. ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¸¨◊¨◊˛¨˙◊ı¨Å˛¨ ōōōōōōި!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸ÅæEŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¨V+V˛+VVŞV¨¨◊¨˛◊ ¨◊¨¨+VÅ++VÅÅV˝Å¨˛Å¨Å¨¨˛◊¨˛◊¨◊˨◊¨˛◊+¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˙ŨıÅΔ    ¨Å¨Å¨Å¨Å¨Å˛¨ōōިōōŞ¨Å˛¨ōōިÅ˙¨Å˛¨Å˛¨Å˛¨Å¸¨Å++V˛+˛V+Ũ◊¨˚◊¨˛+++V˛+VVŨÅV˛¨˜◊¨◊¨◊˛¨◊¨◊¨◊˙¨◊¨◊˛¨◊¨¸◊˚¨Å˛¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛ÅºCŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛+V˛+    V+VV¨¨◊¨◊¨˛◊ÅV+˛++V++VV◊˛¨˛◊    ¨◊¨◊¨◊¨◊¨◊˨◊¨◊¨◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ÔÅÆ˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨ÅͨÅ˙¨Å¸¨˛+V+˛V+ÅÅ˝◊¨ÅÅVÅÅVÅÅ+VVŨÅŨ¨¸◊¨˛◊¨◊¨¸◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨˚◊¨ÅÚ¨Å¨Å¨Å¨Å¨Å˛¨)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å»>ōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōިŨ¨Å˛+V+V+VVŨ◊¨¨V+++++VިŨŸ¨Å˚¨◊¨◊¨◊¨◊¨◊˙¨◊˙¨◊˙¨◊¨˛◊ި#ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨ıÅΔ¨Å˛¨ōōŞ¨Å˛¨Å˛¨ōōިōōިň¨Å˛¨Å˛¨Å˛¨Å˛¨Å˝¨V+V+¸VިÅV˝++¸    ++V++VVÅÅ˝¨◊˛¨˛◊¨◊¨◊¨◊˛¨◊¨◊¨◊˛¨    ◊¨◊¨◊¨◊¨◊¨¸◊ı¨Å˛¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å≥GŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅV˛+˝V
  67. ÅŨÅV++++˙++˝VÅب◊¨◊¯¨◊˙¨◊˙¨◊¨˛◊˚¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˙ŨÛÅ£¨Å¨Å˛¨Å˛¨ōōŞ¨Å˛¨ÅʨÅÓ¨¸VÅV¸ÅVV˙+V˛+VVÅÅ¨Å˝¨◊¸¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¸◊¸¨◊˜¨Å˛¨Å˛¨Å˛¨Å˛¨%ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å∂Bōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōި
  68. ŨVV+VVÅVÅŞV++˝+˚VÅVÅÅÛ¨◊¨◊Ú¨◊¨◊¸¨◊¨˛◊˙¨Åި#ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å¨˛Å¨ıÅ∏
  69. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōŞ¨Å˛¨Å˛¨Åˆ¨Å˛¨Å˙¨ÅÚ¨¸V˛ÅVV˙+VVÅVÅÅ¨Å˝¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊˙¨ÅÅ˙¨-ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å∏PŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅÅVV+VVÅ+˛V+++++V˛Å˚¨◊¨◊˛¨◊˙¨◊Ú¨◊¨◊¨◊˛¨◊¨◊¨◊¨¨Å¸¨Å˝¨ÅŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨ÎÅ™˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˙¨ÅÓ¨ÅͨVÅ˘V¸+V+ÅŨ¨˙◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨¸◊¨◊˝¨Å◊˝¨ōŞ¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨ÅΔ6ōōōōōōōōōōōōōōōōōōōōōōōōōōōިōōިÅ¨Å¨Å˝¨ÅVÅ˝V+V++˝+VVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊ˆ¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨¨Å¸¨Å¸¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨ÒÅ¥¨Å˛¨ōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨Åfl¨Å˚V+V¸+V+VV˝Å¨¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨¸◊˛¨    ◊¨¨Å¨¨◊¨◊Ÿ¨1ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛ÅµHÅ¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˝¨ÅVV+V+V˝+˚+˝VÅÅ˚¨◊Ó¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˚¨Ũ¨◊˝¨Å˛¨#ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨ÔÅõ¨Å¨Å˛¨ōōŞ¨Å˛¨Å˙¨Åœ¨ÅVV˛+Vˆ+V+ÅV¨Å˚¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨¯◊˛¨◊¨◊¨¨◊◊¨◊¨¨Å◊¨¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ōōިŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨¸Åø"ōōōōōōōōōōōōōōōōōި ōōōōōōިōōŞ¨Å˛¨Å˛¨Å¨Å¨Å˝¨ÅVV˝+++++++V+ÅŨÅÔ¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊˛¨◊˝¨Å˙¨+ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˙ŨıÅ•
  70. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨ōōŞ¨Å˛¨Åœ¨ÅVV˚+++++VV˝Å¨Å˚¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨˚◊¨¨◊¨◊˛¨◊¨◊˛¨◊˛¨◊ōŞ¨Å˛¨ōōިŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨Å¨Å¨˙ÅΩ˛ÅA¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨    Å¨Å¨Å¨Å¨ÅV˝+ ++++V+VV˝Ą̊◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨¨Å◊˝¨Ũ¨◊¨¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨ÔÅɲ¨Å˛¨Å˛¨ōōŞ¨Å˛¨Å«¨ÅVV¯+VV˝Å˝¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨Ó◊¨˛◊
  71. ¨◊¨◊¨◊¨◊¨◊¨◊¨◊Ô¨Å˛¨Å˛¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å«ōōōōōōōōōōōōōōōŞ¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨ÅV¯+˝VÅÅ˚¨◊¨◊¨◊˛¨◊˙¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊˚¨#ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨˘Å†¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨ÅÕ¨◊¨V+V˛+˝VÅŨŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊˛¨◊¨◊¨˛◊¨◊˛¨◊˝¨ōŞ¨Å˛¨ōōŞ¨Å˛¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Åœ<ōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨ōōިŨŨŨŨÅ˚+˝Vި ◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊˛¨◊¨◊˛¨◊¨◊˛¨◊¨◊˚¨Å˛¨ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˛Å¨˛Å¨ÛÅå¨Å¨Å˛¨ōōŞ¨Å˛¨Å¡¨◊ÅV+VVÅVÅŨ¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨Ó◊¨˛◊¨◊◊¨¨◊¨◊¨˛◊¨˛◊¨◊¨◊˛¨◊¨◊˚¨Å˙¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ¸ÅÀ6ōōōōōōōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨˛VÅVÅÅ˝¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊˛¨◊¨◊˛¨◊¨◊˛¨◊¨◊˛¨◊ı¨!ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨Å¨ÛÅñ¨Å¨Å˛¨
  72. ōōōōōŞ¨Å˛¨Å‚¨Å¨◊˛Å ¨Å¨Å◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨Ï◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊Å◊¨◊˘¨Å˛¨ ōōōōōōިŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛ÅŒ<ōōōōōōōōōōōōōōōōōōōōōōōōōōōōōōި'ŨŨŨŨŨŨŨŨŨŨŨ¨+¨Å¨Å¨¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨
  73. ◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨◊¨◊˛¨◊¨◊˙¨◊˝¨ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨ÔÅ䞍Ş¨Å˛¨Å˛¨Å˛¨Å˛¨Åƒ¨◊VV˛¨˛◊¨˛◊¨◊¨◊¨◊¨◊¨Ë◊¨¨˝◊¨˛◊¨◊¨¸◊¨◊◊¨¨◊˛¨˛◊¨◊˚¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŋōōōōōōōōōōōōōōōިōōިōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Ũ¨Å+V¨Å¨¨ÅŨ¨◊˛¨    ◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨◊˛¨◊¨◊˛¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨Å˝¨)Ũ¨Å¨¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨Å¨Å¨˝Åê¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˙¨Å˙¨Å”¨
  74. ◊++V¨Å◊¨◊V+V¨¨˛◊¨◊¨◊¨˛◊¨Í◊¨◊¨˛◊¨◊¨˛◊¨˛◊¨◊¨◊¨˛◊˛¨◊¨◊Û¨Å˛¨Å˛¨Å˛¨Å˛¨ Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å◊8ōōōōōōōōōōōōōōōōōōōōōōōōōōōōިōōިōōŞ¨Å˛¨Å˛¨V+¨Å˝¨Å+VÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊˚¨Å˛¨ÅŨ¨ÅŨ¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨Å¨Å¨˛Å¨˜Å֍ōŞ¨Å˛¨Å˛¨Å˛¨Å˙¨Å…¨+Ÿ¨    ◊¨++VVÅŨ¨‰◊¨˛◊¨◊¨¸◊¨˙◊¨˛◊¨˛◊Å˝¨ÅōōިŸ¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨœ"ōōōōōōōōōōōōōōōōōŞ¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˙¨Å˛¨Å˛¨Å˛¨Å˝¨VV¨Å¨◊ި˛+V+VÅ˝¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨˛◊¨◊¨◊˛¨◊¨◊¨◊¨˛◊¨◊¨◊˛¨◊¨¨◊◊¨◊¨¨Å¨Å¨Å¨˛Å¨Å¨ÅVŨ˛Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å ¨Å¨Å¨Å¨Å¨Å¨Å¨ıÅö¨Å¨Å¨Å˛¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å’¨Å+Ũ¨◊˛¨◊ÅV˛+VVÅÅ˝¨◊¨◊¨Ï◊¨¯◊¨˛◊˛¨◊¨¸◊¸¨Åި ÅŨ¨Å¨VÅōōި)ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å—4ōōōōōōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ōōިV+++¨V◊˛¨◊ÅÅV˛+˛VÅÅ˝¨$◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˙¨◊¨◊¨ÅŨŨ˛Å¨ÅŞVÅVÅVÅŨV¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˛Å¨˛Å¨˛Å¨ÛÅê˛¨Å˛¨Å˛¨Å˛¨Å˙¨ÅèV+˛++ÅÅ◊˝¨˝Å V++VVÅŨ¨◊¨◊¨Ï◊¨¸◊¨˛◊¨¸◊¨◊˛¨˛◊¨¨V¸¨Ũ˛Å¨V˛ÅVÅVÅōōŞ¨Å˛¨ōōިŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨūōōōōōōōōōōōި ōōōōōōިōōŞ¨Å˛¨Å˛¨ŨŨÅ˙¨Å¸¨˙#VÅŨ¨Å◊VÅŨVV+V+VVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊ ¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊Å◊˛¨◊¨◊˝¨V¨Å¨¨ÅV¸Å+ÅVŞV˚ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨ˛Å¨ıÅõ    ¨Å¨Å¨Å¨Å¨Å˛¨ŨÅΔ¨++˛+VŸ¨Åި+Å+VVÅŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¸◊¨◊¨◊¨ˆ◊¨◊˛¨◊¨˛◊ŨŨ¨ÅŨ¸Å¨ÅŞVÅ˝V˛Å¨Å¨Å˛¨(ŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨŨÅÀ4ōōōōōōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨ŨŨŨ˙++ÅV˝¨ ÅV¨Å¨¨+VV+VVި◊¨◊˛¨◊¨◊¨◊¸¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¸¨◊¨◊˛Å¨Å¨ÅV˘ÅVÅ++VV+V+˛ÅV¨¸Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˙Ũ˚Åü¨Å¨Å˛¨ōōިҍ ◊V++++Å+˝¨◊˛Å¨◊◊+˛V
  75. +Ũ◊¨◊¨◊¨◊¨◊¨◊˙¨◊¨¸◊¨¯◊¨◊¨◊˛¨◊¨¨◊◊¨¨˛Å¨Å¨VVި ÅVÅÅVV+VVÅVV¸Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨÅ÷*ōōōōōōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨ŨV++˛++Ũ¨Å◊˝Å¨◊◊V+ŞV¨¨◊¨◊˛¨◊˘¨ŨŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊˚¨Å˝¨◊ŨŨV˝Å ¨VŨ¨ÅV+ÅVV++˛VÅ+˛Å'VVŨV¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨˝Å≠¨Å¨Å¨Å˛¨ōōŞ¨Å˛¨Å˛¨Å˛¨Åÿ¨V˛++˛+˛Å¨◊¨¨◊Ũ¨◊¨+VÅŨ¨◊¨◊¨◊˜¨ŨŨ¨˛◊˛¨◊¨◊¨◊¨◊˛¨◊¨¨Å˝¨◊¨¨Å¨ÅÅV¨Å¨Å¨Å¨ÅÅV+˝V˚VÅVÅV˝Å&¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å√4ōōōōōōōōōōōōōōōōōōōōōōōōōōިōōިŨŨ¨Å˛++¸+˛VÅÅ◊˙¨◊+VVÅŨ¨◊˘¨ ŨŨŨŨ¨◊¨◊˛¨◊˘¨Å˛¨V˛¨Å◊¨ÅŨ¸Å¨Å˛¨˝V˛V˛+V+Å+˚V˚Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨˛Å¨˛Å¨˚Å®˛¨Å˛¨Å˙¨ÅÕ¨V˛+˛+˛V+Å+˛Å¨◊˛¨◊¨◊◊¨+VVŨ◊¨◊¨◊¨◊˚¨
  76. ŨŨ¨◊¨◊¨¨Å¨¨◊˛¨◊¨¨Å◊¨¨Å˛¨Å◊◊¨ÅŨ¨Å¨¨ÅÅ◊¨¨˛VÅV++V+Å+¸V    +ÅVÅVVŨV¨˛Å¨Å¨Å˛¨ ōōōōōōިŨŨŨŨŨŨŨŗōōōōōōōōōōōōōōōިōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Ũ¨◊Å+¸¸++V+VV˛Å˝¨◊¨◊¨◊¨˝Vި◊¨¨Å¨Å¨Å¨˛Å˚¨ÅV¨Å¨˛Å¨Å¨Å¨Å¨ÅŨ¨Å¨◊¨Å¨˛Å¨Å¨Å˛¨Å++˛V V+VV++Å+V++˝V+ÅVÅV¨V˚ŨŨŨŨŨŨŨŨŨŨŨ˛Å¨˛Å¨˝ÅÆ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å€¨◊V˚++V+V˛++VVÅÅ˝¨◊¨◊¨˛◊˛VÅÅ˙¨Å˛¨˝Å˝¨ŨVÅŨ¨ÅŨŨV¨Å¨˛Å¨Å¨◊◊Ş¨Å˝¨◊ÅŞV+VV++V+V˛+V+V+˝V+V˝Å¨V¨¸Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅÕ(ōōōōōōōōōōōōōōōōōōōōިōōŞ¨Å˛¨ōōި+˙    +V+VV◊¨˝Å¨◊Ũ¨◊˛¨◊◊¨˛V
  77. ÅŨŨŨŨŨ¸ÅVŨÅÅVV˝ÅV˛ÅV˝ÅVV˛Å¨◊ÅÅ˝¨Ũ¨◊ÅÅ+˛VV+V¸+V+V˛+V+ÅVVÅÅVÅÅVÅV¨¸Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨¸Å¨˘Å£˛¨Å˛¨Å˛¨Å˙¨Å÷¨¸++˛+ V◊¨+¨ÅŨÅ◊˛¨◊¨¨◊¨˛◊˝VÅÅ˙¨ ÅÅV¨+VŨÅÅVV˝ÅV¨Å¨V¸Å V¨Å¨¨◊◊Ũ◊¨◊˛¨◊ÅŸV˚+V+V˛+˛V ++VÅ+V+ÅVÅV¨˛Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨ŨŨŨŨŨŨŨŨŨŃ"ōōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Ũ¨Å˜VV++◊◊ÅVV+ÅV◊Å˙¨Å˛◊¸V˚ŨÅÅ+¨VV¨ÅÅV+VÅVÅ+ÅVÅV+˝Å+˝Å◊¨◊Å˝¨
  78. ◊¨ÅVÅVV+V+V˛+V˛+V+V¸+ Å+V++VVÅVŨ¸Å¨V¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˙Ũ˝Å∞¨Å˛¨Å˛¨Å˛¨Å˛¨ŨŨŀ¨++˛+˛+VÅVV+Å◊V¨+ÅŨ¨VŨ¨◊¨◊Ũ˝◊˛V˛ÅV˝Å¨V¨VÅV˝Å V+ÅVÅ+VVÅÅVV˛ÅV˝Å
  79. ¨◊◊¨◊¨◊¨◊¨¨˛V ÅVV+VV++V+VV¸+V+V+˝VÅVÅV˝Å¨˙ިŨŨŨŨŨŨŨŨŨŨŨ˛Å∫$ōōōōōōōōōōōōōōōōōōިŨŨŨŨŨŨŨŨŨVˆ+˛V+¨◊VÅVÅ◊¨¨VÅÅ˚¨◊¨◊◊ŞV ÅVÅVÅVÅÅ+V+V+˝VÅVV+˘VÅVV˝Å¨◊¨◊¸¨˛Å+˛V˝++VV˚+¸+
  80. V+V++VÅVÅV¸ÅV˚ŨŨŨŨŨŨŨŨŨ˜Å߲¨Å˛¨Å—¨◊++˛+˛++VŨV++V◊VÅÅ◊¨◊˛Å¨¨◊¨◊¨¨˝◊ÅÅVÅVÅV˝ÅVÅ◊Å++Å+˚V+¸V
  81. ÅVÅÅVV¨ÅŨ◊¨◊¨˛◊ŨÅÅV+VÅVV+V+VV+V++V++V+V+˝V+VV˝Å¨Å¨˛Å¨Å¨˛Å˙¨Å˛¨ōōōōōōōŸōōōōōōōިōōި ōōōōōōŞ¨Å˛¨Å˙¨ŨVı
  82. ++V++VV˚ÅVÅV¨¨◊˛¨˝◊¨˛V˙Å◊¨◊¨˚+VV++˛V+ÅVÅÅV+¨Å¨Å◊¨◊¨◊¨◊¨ÅVÅVV˛+V˝+
  83. V+V++++˝+ VV+VV++VÅÅV¯ÅV¨ÅÅV¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨Å¨Å¨˝Å±¨Å˛¨Å˛¨Å˛¨ÅŸ¨◊Å+˛+˛+˛+V¨˛+ V++VVÅ+VVÅVV˛¨◊Ũ˝◊¨¨V¸Å    VŨ◊◊¨◊¨V˛+VV++V+Å+V˛Å!¨+¨Å¨Å¨◊◊¨◊¨◊¨¨ÅVVÅVÅ+V++V++V++˝++V+V˛+˛V+V¸Å¨˛Å¨V¨˙ިŨŨŨŨŨŨŨŨŨ˛ÅՠōōōōōōōōōōōōōōōōިÅ˙¨Å˛¨Å˛¨Å◊Vı++˛Å+V˛
  84. ++ÅVÅVÅÅVÅŞ¨ÅÅ◊¨˛◊ÅVV˛Å VÅ+V¨◊¨◊¨◊◊Ş+V+˛VÅÅV¨VV˝Å¨◊¨◊¨◊¨◊¨¨+VVÅ++++V+V˛+
  85. +++++V++V˛+VÅVÅV˝Å¨ÅVÅÅV˚ŨŨŨŨŨ˛Å¨˛Å¨˚Å©˙¨Å’¨◊V˚++˛++V+ÅVÅ+V+++VÅÅV¨Å¨VÅ◊Å˝¨˝◊¨¨ÅVV˝Å+¨◊¨˛◊¨˛◊+V+˝V+Ũ˛ÅV˛Å¨Å◊¨˛◊¨◊◊¨ÅV+ÅVV++V++˝+˝+V+V¸+Å+˛VÅVŨ˛Å¨˛Å¨V¨Å¨Å¨Å˛¨ŨŨŨŨŨŨŨŨŨšōōōōōōōōōōōōōŞ¨Å˛¨ÅÚ¨Ũ+ı    +++VVÅ++˝+¨+V¸Å˛¨
  86. ◊¨◊Å◊¨◊¨◊ÅŞVÅV+V◊¨˛◊¨¸◊Å+¸V!ÅV¨ÅVVÅŨŨ¨◊¨◊¨◊¨¨ÅÅVV+V++++˝+ ++++V++˝V++ÅVÅ+˛ÅV˛ÅV˚ŨŨŨŨŨ˛Å¨Å¨Å¨˛Å¨Å¨ÅÅ™¨Å¨Å¨Å˛¨ōōިŷ¨◊+˚++++¸+Å+++V¨ÅVŨ¨Å¨◊¨◊¸¨
  87. ◊¨◊¨¨VÅVV++Å◊¨ˆ◊¨V+Å+˝Å ¨+VŨ¨Å◊◊¨◊¨˛◊ŨVÅŸ+++V+˝+˚+˝V+˛VÅ+V˛ÅVV˛ÅV¨ÅVŨ˙ōިŨŨŨŨŨŨŨŨœ Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å˛¨Å˛¨Å˛¨Å˛¨Å◊+˜++˛+VVŸ+Ũ¨◊˝Å¨◊¨◊¨¨+V˛¨◊¨¨ÅÅV++Å◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊◊ŞVÅV¨˛Å¨Å¨Å◊˛¨◊¨◊¨˝Å+++˛+VV˛+˛    ++VV+V+V˝V
  88. +VÅVÅVVÅÅVVÅÅV˛ÅV¨V˝Å¨Å¨Å¨Å¨˛Å¨˛Å¨˚Å≥˛¨Å˛¨Å˛¨Å›¨◊V++++++++VVÅVÅV++VŨVVŞ◊¨¨Å˛¨ÅÅ+VVŨ˛◊¨ÅV+V¨˙◊¨˜◊ÅV¨V˛ÅV◊¨¨Å¨˚◊¨◊ŞV˛+V+˛V++˛+    ++ÅV++Å+V˛+VVÅ+V˛ÅVŨŨV˛ÅV¨˛Å¨Å¨Å˛¨ŨŨŨŨŨŨŨŨŨŅōōōōōōōōōōōŞ¨Å˛¨Åˆ¨Å˛¨Å◊V˘+˛˝+V˛Å¨¨V++ŨV+Ũ◊¨◊˝¨ÅV˛+ÅV¨˛◊ Å++¨◊¨◊¨◊¨˛◊¨˛◊¨˛◊¨◊◊¨V˛Å+Ũ¨ÅŨ◊¨˛◊¨◊¨¨V˛++VVÅ++V˛    +++VÅ+V˛++˝V++ÅVÅV˝ÅV¸Å¨¯Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨≥¨Å˛¨ŨŨÅ˙¨Å¨◊Å+˛++˛++V˛ÅVV¨˛+ŨV+VÅ◊¨◊◊¨+V+VVÅV++ÅÅ◊◊V++V¨◊◊¨˙◊¨ˆ◊¨VÅÅVÅ˝¨Å◊¨¸◊¨¨Å¸+V˛Å++˛+
  89. V+V+ÅV++V˛+VVÅ+˝Å    VV¨Å¨VÅŨV˝Å¨Å¨Å¨Å˛¨ŨŨŨŨŨŨŨŨРōōōōōōōōōōōōōōōōŞ¨Å˛¨Å˛¨ŨÅ+˙+˝V++VVÅÅVÅÅ+VV¨++V¨¨◊¨◊ÅVÅV˛+ÅVV+Å◊Å+◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊
  90. ¨◊¨◊¨◊¨◊◊VV˝Å¨Å˝¨    ◊¨◊¨◊¨◊Å˝+˛Å++˛V+VV++V++++V++ÅVÅV+V˛ÅVV˜ÅV˘Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˚Å≠˛¨Å˛¨Å˛¨Åfl¨!V++++++VVÅ++ÅŨŨ¨ÅVVÅÅ+VŨ˝◊ÅV◊¨ÅV+VÅVÅ+Å+◊¨◊¨◊¨Ì◊¨+˛ÅV◊¨¨◊¨¨˛◊¨◊¨◊◊V++ÅVVÅÅ++˚+VVÅV++˛VÅÅVÅÅVÅÅ+ÅŨÅVV¨Å¨V¨Å¨Å¨˛Å¨Å¨Å¨˛Å˛¨ŨŨŨŨŨŨŨŜōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˙¨ŨŨ˝++˛+++ÅÅV˛Å¨Å¨˛+ VŨ++Å◊¨◊¨◊+˝Å˝VÅVÅ+˝¨
  91. ◊¨◊¨◊¨◊¨◊¨◊¨◊¨˛◊¨˛◊!¨◊VVÅÅV¨Å¨Å¨Å¨¨◊¨◊¨◊◊Å++ÅVÅVV++˝+V+VV++++ÅÅVV+ÅVÅVV˝ÅV˚Ũ˛Å¨¯Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅÅ∑¨Å˛¨Å˛¨Å˛¨Å˛¨ÅÊ¨Å˝+˝+VV¨VVVŨ¨Å¨Å++V˛Å++˛◊
  92. ¨◊¨VVÅVVVV˛ÅVV◊◊¨◊¨˛◊¨◊¨+ŨVÅVVŨŨ¨◊¨¸◊+˛V
  93. ÅVÅ+++++Ş+˛VV˛+V˛Å+VVÅÅV+˝Å'VŨŨŨŨŨŨV¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨Å¨ÅÿōōōōōōōōōōōōōōިōōިŨŨ¨V˛+˝V˛ÅÅÅÅŨŨÅÅ+V˛Å
  94. V¨◊¨◊◊¨+VV¸+"VÅÅ+Å◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊◊V+ÅŞV ++ÅŨ◊¨◊¨◊¨◊˛+¨+VÅVV+++VV+V+V+++V+ŞV+VVÅ++˛Å¨VÅŨ˛Å¨˛Å¨ˆÅ¨Å¨Å¨Å¨˛Å¨˛Å¨ÅÅ≤˙¨Å˛¨Å·¨ ◊++++ÅŨ˛¨++Ÿ¨
  95. Å+ÅŨV+¨◊¨˛◊Å+V˝+V++VV+˛◊¨˛◊¨˛◊¨ˆ◊¨˛◊+˛ÅVÅV+Vި˛◊¨◊Å++¨ÅVÅÅV++++VVŞ+V+++VŞV ÅVV+ÅVÅÅV+ÅŨ˛Å˛¨Å˛¨Å˛¨Ũ¸Å¨Å˛¨ŨŨŨŨŨŨŨŋōōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ŨV+˛+˝+ÅV+V¨++Ũ¨Å¨¨ÅVŨÅ+˝¨◊◊VV+˛+V˝¨◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊˛¨◊+VŨÅÅVVVŨ¨◊¨◊˛¨+¨Å˛V +++++VV++˛++VÅV+ÅV˛+V˛Å
  96. +V¨ÅŨVÅŨÅŨ¨˛Å¨ÅŨ¨V¨˙ŨŨ˛Å¨Å¨Å¨˛Å¨≤¨Å˛¨ōōިń¨˛++¸+
  97. ¨VVÅÅ+Vōި
  98. VV¨Å¨V¨◊¨˛◊˙+VV++◊◊¨˛◊¨Ù◊¨◊˛¨◊¨˛Å
  99. ¨VÅ++VV¨◊¨◊˛¨V¨¨ÅV¨V+++V+V˛++++ÅV++ÅV+VÅVŞV¨˛Å¨Å˛¨Å˛¨Ũ˛Å¨˙ŨŨŨŨŨŨŨŨŨÅ◊ōōōōōōōōōōōōިōōŞ¨Å˛¨Å˛¨ +++++VÅV+V+ŨŨ¨Å+ÅŨVV˝¨◊Å+++˛++V◊˛¨◊˛¨ ◊¨◊¨◊¨◊¨◊¨◊ިŨ¨V+ÅŨ˛V++VV¸¨!ÅÅVŨVÅ++++V++V++++V+V++ŸVÅVÅV˚ŨŨVÅŨ˛Å¨˛Å¨Å¨˙Ũ˛Å¨Å¨Å¨˛Å¨ÅÅ´˛¨Å⁄¨ÅVV˛+V+V+VV˝+ÅŨÅ◊¨◊+Ũ¨+¨¨◊¨◊◊Å˘+ V¨¨◊¨◊¨◊¨◊¨¯◊¨Åōި+VŨ¨ÅVV+VŨ¨◊¨¨ÅÅVŨÅÅ˙+    V+VÅV++˝+Å+˛VÅVÅV+ÅÅVÅV¨¨Å¨Å˛¨˛Å˛¨Ũ˛Å¨Å¨Å¨Å¨Å¨˛Å
  100. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å”ōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˘¨V¨+˛
  101. +V++V+V+++VŸ¨+˛ÅVÅ˝¨◊+++++++V◊◊¨◊¨◊¨◊¨˛◊¨◊¨◊¨◊¨¨VÅÅVŨV+VŨ¨+V++VVިÅV++V¨ÅVV˛+    +++V+Å+˛++V¸+VÅ+¨++VÅVÅ+¨VÅÅVŨŨ˛Å¨ÅŨ¨Å¨˛Å¨¯Å¨Å¨Å¨Å¨Å¨˛Å¨¿¨Å˛¨Å˛¨Å˙¨ÅȨ◊V+¨V˛+VV+˛V+V˛+ި    ◊¨ÅVŨV+Å˝¨◊¨V++¸++V◊˛¨◊¨¸◊¨¸◊¨¨VÅÅVV¨Å++Ũ¨ÅVV++ÅV˛¨ÅÅV+VŨÅV˛+˛+V+V++¨++VV++Å+VŞV+˛VÅVV˛Å¨V¨Å¨Å¸¨Ũ¨˝Å¨¨ÅŨŨ˛Å
  102. ¨Å¨Å¨Å¨Å¨Å¨Å¨Å÷ōōōōōōōōōōōōōōިÅ˙¨Ũ¨++¨++V+V+VV˛++ōިWVVÅÅ++Ũ¨Å◊¨¨++++++◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨ÅVVÅ+ÅVÅVŨÅÅ++VVŨ¨Å¨V+ŨÅVV++VVV++Å˝++V¸+VÅVŞV˛ÅV¨˛ÅVŨÅÅV¨Å¨˛Å¨Å¨Å¨Å¨V˘Å ¨Å¨Å¨Å¨Å¨Å¨ÅÅ∑˛¨Å€¨◊++¨V+V++˛++Å+V++V˚¨VÅŨ++Å◊¨◊¨◊Å+++˛++◊◊¨˛◊¨¸◊¨˛◊ ¨◊Ũ+ÅVVÅÅ+VV˛¨V˛+
  103. VVÅ◊¨¨Å++ÅŨVV˛+    VV++V++Ş+˛+V+ÅÅ◊˛¨˛◊¨◊ÅŨ˛◊¨¨Å¨Å¨ÅŞ¨Å˛¨ÅÅ˝¨ÅŨŨ˛Å˛¨Å˛¨ŨŨŨŌōōōōōōōŞ¨Å˛¨Ą̊ +◊+V+++¸VVŨŨŨ+VÅÅV˝¨◊¨V+++++V◊˛¨◊¨◊¨◊¨◊˛¨◊¨¨ÅVV+V+VÅVV+ÅŨ¨V++VV˛¨
  104. VVVV¨ÅV+˝+Ş+V˛+VV++V¨˛V¨VÅV¨V¨VV¨¨ÅÅ◊¨◊¨¨˛Å¨Å¨Å˛¨V¨Å˛¨Ũ˛Å ¨Å¨Å¨Å¨Å¨Å¨Å¨˛Å¨¿¨Å˛¨Å˛¨Å·¨ ◊++¨V+++¸V++V¨Å˛¨Å+˛Åި    ◊¨¨+++˛+¨¨◊¨◊¨˛◊¨◊◊¨¨◊◊¨¨ÅVV+V+Å˝Vި++VVŨ¨Å¨++V¨ÅÅ++Å+Å+++VŞ++VŞV¨¨◊˛¨Ũ◊¨Å¨¨◊Ũ¨◊¨¨◊◊˝¨Å˛¨ ŨŨÅ◊ŨŨŨ¸Å ¨Å¨Å¨Å¨Å¨Å¨Å⁄ōōōōōōōōިōōŞ¨Å˛¨Å˙¨ Ũ¨++¨V+V++˛V+VV++Ũ¨Å¨¨Å+V¨++ōި
  105. V+++++++¨◊˛¨◊¨◊¨◊¨◊˛¨◊ÅÅ+Å+V+˛V+ÅV¨Å¨Å+VVŨÅÅV+V˛Å+V+¨+Å++V+˛+    VÅ+Ũ◊¨◊¸¨◊◊¨+˛¨Ũ◊¨ÅŨŨÅ◊¨¨Å¨Å¨Å¨Å¨Å˛¨¸Å¨˛Å
  106. ¨Å¨Å¨Å¨Å¨Å¨™˛¨Å˛¨Åfl¨◊++ÅÅVÅ˙+˛VVōިV++Ũ+V˚¨˙++++◊¨˛◊¨◊¨˛◊˛¨◊¨¨˛V+V+VÅ+VVި Å++VŨŨÅV˛Å V+VV+¨Å+VV˝+
  107. ++◊VÅ◊◊¨¸◊¨◊◊¨++Å˝¨˛◊˙¨◊¨◊˛¨Ũ¨ÅÅ˝¨ŨV¨˛Å ¨Å¨Å¨Å¨Å¨Å¨Å“ōōōōōōōŞ¨Å˛¨Å˛¨ÅÒ¨+ÅŞV˛    ++VÅ+V¨Å˛¨V˛+ ŨVŨŨÅÅ+˝+++V¨◊¨◊¨◊¨◊¨◊¨¨Å˛¨ÅV+V+VVV+VÅŨŨ˛+V+ŨÅÅ+VÅÅ++V+V¨V˛+˛++VVVŨ◊¨◊¨◊¨◊˝¨
  108. ++¨Å¨Å¨¨◊¨Å¨Å˛¨◊¨¨Å˛¨Ũ˛Å˛¨Ũ˛Å¨V¨˛Å¨Å¨Å¨˛Å¨±¨ÅŸ¨◊+V¨+¨+¸+˛V+ÅŞ¨
  109. ÅÅ+V+¨V+V¨Å˛¨V¸+
  110. +++Å◊¨◊¨¸◊¨◊˛¨◊ÅÅ+VV˛+ÅV+¨V˛¨Å++VVÅŨÅÅVŨV+VV++¨ÅV¸+¨Å++Å◊¨˛◊¨˛◊¨◊ÅÅV++Ÿ¨◊◊¨V˛¨Å˛◊˛¨◊◊¨Å¨Å˝¨ŨÅŨÅŨ¨Å¨Å¨Å¨Å¨Å¨Å€ōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ Ũ¨VŨ+V++˛ ++V++V¨Å¨ÅÅV˛+Å++˝Å¨Å˛+++++˝¨◊¨◊¨◊¨¨˛Å ¨¨ÅV+V+VÅ+V˛Å¨ÅÅ++VV¨ÅÅ++VÅÅ+V˛+◊ÅV¸+¨Å+Å◊¨◊¨◊¨◊¨¨Å¨ÅÅ˝+˝¨Ũ¨◊ÅŞ¨Ũ◊¨¨Å◊˝¨ÅިÅŨŨ˛Å¨˛Å¨Å¨˛Å¨ÅÅ´◊¨◊VÅ◊+Å++VV+VV++¸¨    ÅVVV¨VVިů+VV◊◊¨◊¨¸◊¨¨V˛¨VV+V˛+ÅV+ŨÅ◊¨¨˛+V+¨Å¨V+V¨Å++ÅVV+˛ÅV˚+¨VV¨◊¨¸◊¨◊˛¨    VV++VÅ◊¨◊Ş◊¨¨Å◊¨¨Å˛◊˛¨◊◊¨◊¨Å˛¨ōިŨ¨ÅިŨŨŨÅÀōōōިōōިŨŨÅ˙¨Åı¨VV¨VÅV¸+V+Vōި++˛V++ÅŞ¨V¸++++V◊¨◊¨◊◊¨¨◊◊¨¨ÅÅ◊ÅV˝+VV+VÅŞ¨Å+++V˛Å    +ÅÅ++ÅVÅV˛ÅV+++VV˛+
  111. V¨◊¨◊¨◊¨◊¨¨˝Å++VV˚¨◊¨◊Ũ¨◊Ũ¨◊¨¨Å◊¨◊Ÿ¨ ŨŨŨŨŨV¨˛Å¨Å¨Å¨Å¨¨¨ÅŸ¨◊++V◊¨V¨˝+V+V+V¨Å˛¨Å+VÅV+VV¨Å¨ÅV+++¸+¨◊◊¨˛◊¨˛◊ŨVÅ◊ÅVV+V++VV+ި◊ÅÅ++VŨ¨V+VÅ+ި˛Å˛V¸+++¨¨◊¨˚◊¸Å˛VÅ˚¨◊¨◊˛¨◊¨¨Å˛◊Ũ◊◊˝¨ Ũ¨Å¨◊ŨÅŨ¨Å˛¨Å¨Å¨Å¨Å¨Å–ōōōōōōōōōōōōިÅ˙¨Å˚¨VÅ◊+ÅV++++˝Å
  112. ¨ÅÅ+VÅ+V++˝Å
  113. ++++++¨◊˛¨◊¨˛◊¨¨˛V◊VV˝+˛V
  114. ŨŨÅÅV++˛ÅVÅVÅ˝¨+Å+VŞ+++ި◊¨◊¨◊¨¨V˛Å+V+VÅů¨Å˛¨Ũ¨◊¨Å¨◊˝¨ōōި ŨŨÅŨ¨Å¨Å¨˛Å¨ÅÅ®˛¨Å€¨
  115. Å++¨◊ÅVÅV++V˛+V¨Å˛¨V++ÅŞ+V¨Å◊VV˝+ V+++◊¨◊¨¨¸◊¨ÅVV¨¨V˛+VVÅ+ÅÅ˝¨VVV+VŨ++V¨V◊◊¨◊VV+VŸ++V¨˘◊¨¨V˛Å++VV˝¨◊˛¨◊¨◊˙¨◊¨◊Ũ˝◊¨¨Å¨Å˛¨Ũů¨ŨŨŨŜōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ÅÛ¨◊++V◊¨+ÅÅ+V+++ÅŞ¨ÅV+V¨VÅŨ¨V+++˛+++¯¨/ÅVV+Ũ¨VV+VV+Ũ◊Å◊ÅV+V++¨Å+ÅV+¨◊¨◊ÅVV+Å++˛+V¨¨◊¨◊¨◊¨◊¨¨ÅVÅÅ++VVÅōިÅ◊¨◊˚¨Å◊¨◊˛¨ ◊¨◊¨¨Å¨ÅŨ¨Å¨˛Å¨Å¨˛Å¨Å¨Å¨Å¨Å¨º¨Å˛¨Å˛¨Å·¨+++Ũ◊+ŨVV++VV¨Å˛¨˛+ ¨Å++VÅŨÅ+Ÿ+++V◊¨◊Ũ¨◊VVŨÅÅV◊V˚+ÅVÅ˝¨ÅV˝+
  116. ¨¨++V¨+V◊¨◊¨Å+˛V
  117. +++V+¨¨◊¨¸◊¨¨ÅÅ+Å+V+VÅŨŨ¨◊˛¨◊¨◊Å◊¨◊Ũ¨◊¨¨Å◊¨˛◊¨Å¨¨Å˛¨ŨŨŨŨ¨Å¨¨Å¨Å˛¨Å–ōōōōōōōōōōōōŞ¨Å˛¨Å¯¨+++¨◊VVŨ++++ÅŞ¨V+VÅV++VÅŨVV++V++Å˝¨
  118. Ũ¨VV¨VÅ+V¨˛++VVŸ¨V+VVÅVVÅV¨¨◊¨¨V˛++++VVŨ◊¨◊¨◊¨◊¨¨ÅÅV˝++ÅŨŨ¨◊˛¨◊˙¨Å˛¨    ◊Ũ¨◊¨◊¨¨V˛¨ŨŨ˝Å˚¨ŨŨŨÅÅÆŸ¨◊Ş+Å◊Å++Ũ˛V+VިÅV++V¨++ÅŨ¨ÅV+V˚++˛Å ¨VŨ◊+¨ÅŨ+Ũ˚+    Å++¨¨◊¨¨ÅV˝+ÅÅVVÅ+V˝◊ŞV˝+VÅ◊¨˙◊¨¨ÅÅV+V˝+¨Å˝¨◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊˛¨◊¨◊◊˛¨Å◊¨¨Å˛¨Åި◊¨◊¨¨Å˛¨ŨŬŨŨŨŨŸ¨Å˛¨Å˛¨ÅÔ¨Å˛+Å◊¨˛+¨ÅV++ÅŨÅÅ++V¨+V˝ÅVV˙++ި Ũ¨Å+VÅVV+¨Å˚+ÅÅ˝¨ÅŞ+V+Å++ÅV+Å◊¨◊¨¨+V++VV˝¨˛◊¨◊¨˛Å VV+VVÅŨ¨Å˘¨◊ިŨ¨◊¨¨Å◊¨◊¨◊¨¨Å¨V◊¨Å˛¨ÅŨŨ¨◊¨◊¨ÅŨŨŨ∑¨Å€¨
  119. ◊V+++V◊◊V˛+◊Å+˛Å¨¨ÅV+Ũ+VÅV¨VÅ++˝+V++˛Å)¨V¨¨VÅVV+V¨V+V+ÅV+Å◊¨◊ÅÅVV+V+VV++VÅVŨ¨˛◊
  120. ÅV++V++V¨¨˙◊¨¨V¨VV˛+V+V¨Å◊˛¨◊˛¨◊¨◊˙¨◊¨◊Ũ¨˛◊¨◊ިÅ◊Ũ¨Åި Ũ¨◊¨◊Å¨Å¨Å¨ÅŸÅ¨Å¨Å¨Å¨Å˛¨ōōިōōŞ¨Å˛¨Å˛¨Å˝¨%V++VÅ◊V++Ũ++VÅŨÅV+¨V+ÅVVÅVV+˛++++¨Å¨ÅV¨¨++VÅ++V¨˛+
  121. +Å+¨¨◊¨ÅVV˛+VV˛V+¨¨◊¨◊¨ÅV+++¨¨◊¨◊¨◊¨◊¨¨ÅVV++˛+V¨Å˚¨◊Ÿ¨Å˛¨Å◊¨¨Å¨¨◊¨◊¨◊¨ÅŨŨÅ◊ŨŨŨÅ˙¨ŨŨÅÅ∂˛¨Å›¨◊+++V¨◊¨+V+V¨Å+ÅV˛¨V+V¨V+V˝ÅVV˛+    VV++++¨˝Å ¨ÅV+ÅÅV+ŨV˛+VÅV¨◊¨◊ÅÅV++V+¨++ÅVŨ¸◊˛+V+¨¨◊¨¸◊¨¨Å˛V++++˛VŨ¨◊¨◊¨◊˛¨◊¨◊˛¨◊˛¨◊◊¨¨◊¨˝◊¨Å˚¨◊ōި◊◊˝¨ŨŨŨÅ√
  122. ōōōōōިōōŞ¨Å˛¨ÅÛ¨    +++VÅ◊¨˝+ÅV+VŨ¨Å++¨+˛VÅ+Å++˙++¨V¨VŨÅ+V¨V+Ũ˝+Å++Ũ¨◊ÅÅV+VVVVVÅ+Ũ¨◊¨¨˝+++Ũ◊¨◊¨◊¨◊ÅÅVÅ+V++++˛Vů¨Å◊ˆ¨
  123. ◊Ũ¨◊¨◊¨◊ōōިŨŨŨ¨◊¨◊¨¨Å¨Å¨Å¨Å¨≥¨Å⁄¨+++VŨ◊Å++VÅ++ÅŨ¨Å++ÅÅ++ŞVÅV+˛+V+++VŨ¨V¨¨V+ÅÅ+¨¨¸+
  124. V+V¨¨◊¨ÅVV˛+V++VVÅ+¨¨◊¨◊+V+V+V¨Å◊¨¸◊˝ÅV˛+++VVÅV¨Å˝¨◊¨◊˛¨◊˛¨◊¨◊Å◊¨◊¸¨˛◊˝¨Å◊¨¨Å˛¨ŨÅ◊¨◊¨◊¨ÅŨŨŨŠōōōōōōōōōōŞ¨Å˛¨Å˛¨Å˙¨Å˝++V¨◊¨+VVÅ+VÅŨV+VÅ++˛VÅV+¸++++˛VŞ+VÅV++Ũ˚+ި◊VV+˛+V˛V+V˛¨◊++VV++V˛¨ ◊¨◊¨◊ÅVVÅV++˛+VÅÅVިÅÙ¨Å˘¨◊¨◊¨¨Å¨ÅŨ◊¨ÅōިÅ◊¨◊¨¨˛Å¨Å¨Å¨±Ÿ¨Å++++VÅ◊¨V+VV++VŨÅÅ++ÅV++V+˛Å++˝+V˝+%ÅVÅV+VV+ÅV¨ÅVV¨Å++VV+ÅÅ◊¨◊ÅVV++V+V++˛V+Å◊¨◊ÅVÅV+V¨◊¨¸◊¨ÅVÅVV˛+V+ÅÅVV¨Å˝¨◊˛¨◊¨◊˙¨◊¨◊˛¨¸◊
  125. ¨◊¨¨Å¨¨◊¨¨Å¨Å◊˛¨◊¨◊¨¨V˛¨Ũ¨ÕōōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨ÅÙ¨++++VVŨ◊V+VVVV˛ÅV++ÅVV+VV¨++++V++V++˛V
  126. Å+ÅV¨ÅVÅVVÅÅ˝+    VÅŨ◊¨Å++˛+V+V˛+¨¨◊¨++VÅVVV◊¨¨◊◊¨◊¨Å+˛V++++˛V
  127. Å+ÅŨŨŨ¨◊˜¨Ũ¨◊Å˝¨◊¨◊˝¨ÅÅ˝¨Å˝¨◊¨¨Å◊¨◊¨¨V¨Å¨Å¨∞¨Å€¨+++++VV¨◊¨+ÅV+VV˛ÅV+VŞ+VVÅÅV˛+V++VV++++ÅŨÅVVŨV+ÅV+V¨V¸+V¨¨◊¨◊VV˛+V˛+˛VV¨◊◊V+VVÅ+Ũ¨¸◊¨Å˝V˙+VV¨VÅŞ¨Å˚¨◊¨◊˛¨◊˛¨◊˛¨◊¨¸◊¨◊¨¨Å¨¨◊ިÅ◊¨◊¨◊¨◊˛¨ÅިÅÕōōōōŞ¨Å˛¨Å˛¨ōōިň¨ +++V+V¨◊¨˛V V+¨ÅÅ++VV+˛+ VÅ+++V+V+V˛+VÅÅVV˛Å
  128. VÅV+ÅÅV++ި◊¨˛+V++V+V++V¨◊¨˛V˛+˝¨◊¨◊ÅÅVVV+++VV+ÅÅVV¨Å¨¨Å˝¨Å¯¨Å˛¨Å˝¨◊¨◊˝¨Å˝¨
  129. ŨÅŨ¨◊¨◊¨◊˝¨ŨŨŨ¥˛¨Åfl¨F◊V++++++V+Å◊◊VÅV+VVŨÅ+VVÅ++V+¨V++VV+VV++VÅV¨+ÅVÅ++ÅÅ+VV¨++V++V˛¨◊¨Å++˛+
  130. V+VV++¨¨◊+VŞ+Ũ˚◊VÅV˝+ ++VV+VŨ¨+ÅŞ¨Å◊¨◊˛¨◊˛¨◊¨¨Å¨¨◊ި˝◊¨◊¸¨◊¨◊¨¨Å◊˛¨◊¨◊¨◊¯¨≈ōōōŞ¨Å˛¨Å˛¨Å˛¨ÅÒ¨+++¸+Å◊¨¨+V+V+ÅVÅ+ÅV+V+VÅV++V˛+V+˛+˛V+VVÅ++ÅV++V¨++V+V¸¨V¸+++VV+V¨◊Å++VV+VÅ◊¨◊¨◊◊ÅVV+++˛++V+˛Å˛V¨Å¨Å˚¨◊¨◊Ũ¨◊˙¨ ◊¨◊¨◊¨◊¨◊¨¨Å¸¨Ũ¨◊˛¨ ◊¨◊◊¨Å¨Å¨Å¨Å¨¥¨Å‹¨˛˛+˝+¨¨◊¨VV++ÅVÅÅ+VÅVV++VÅ++˛V V+V++V+ÅŨV˛Å VVÅ+VV¨+V++˝¨◊Ş+V+˛V+Ũ◊V++ÅV+VŨ¨˝◊¨+˛V++++V+¸Å+ÅŞ¨Å◊¨◊Ũ¨◊¸¨◊¨◊˛¨◊¨¸◊¨◊¨◊¨Å˝¨    Å¨¨◊¨◊◊¨¨◊˝¨ōިÅÕōōōōōōōōōōިÅ˙¨Å¸¨Ş++V+V˛¨VV˛+˛Å++¨˛+
  131. VÅV++V+˝+E++ÅÅVV+ÅÅV++Å+VÅÅ++VŨ¨◊¨Å++++VV++Ũ¨+V+ÅVŨ¨◊¨◊◊¨V+V+++˛V+˛VÅV+˛Å¨V˚¨◊˜¨Å˝¨◊¨◊¨◊˝¨Å˛¨Å¨Å˝¨◊¨¨Å¨Å¨¨˝Å¨Å¨∞·¨◊¸¨V+++˛+VÅÅ◊¨Å˛+ÅŨV++V¨+V++ÅVV++VV++V¸+V+Å+V+VVÅ+ÅÅV+ŨÅ+VVި◊¨V¸++VV+V¨◊¨+VV++Å◊¨¸◊ÅV+V++˛+˛V    Å+V+ÅÅ++¨Å˝¨◊˛¨◊¨◊˛¨◊˛¨◊˛¨◊¨˙◊¨◊¯¨˛◊¨◊¨¨Å◊¨◊ŨŨŨ¨√ōōōŞ¨Å˛¨Å˛¨ÅÓ¨+++˝+VVVŨ◊Ş+VÅÅV+V¨˝+V++VV+V+V++V++˛V˚+    ÅVÅV¨+V++˝¨◊Å+˛+˛+++Ũ◊Å+VVV¨¨◊¨˛◊Å+˛+++Å+V++VÅÅVV˛Å¨Å˛¨Å¯¨Å˚¨◊¨˛◊¨◊¨◊¨Åި
  132. Ũ¨◊¨◊¨◊¨◊¨¨Å◊˛Å¨Å¨Å¨¥€¨˛+˛+ V++VVŨ◊¨VV˛Å˛+ Ũ++VV+V+VV˛+V+++˛V
  133. ÅVÅ+ÅVV+VÅV+V¨˛+Ũ◊¨◊¨Å+++¸+¨¨◊˛V+¨¨◊¨˛◊ÅV˝+++VVÅ˘V+V¨Å¨Å¨¨◊˛¨ ◊¨◊¨◊¨◊Ũ¨◊Å◊˛¨˛◊¨˛◊¨◊ōŞ¨Å˛◊Ş◊ ¨◊¨Å¨¨Å¨Å¨Å¨Å≈ōōōōŞ¨Å˛¨Å˛¨Å¨+˛++V+˛V6Å◊¨Å+VÅV++Ũ+++V++V++V+V++VVÅVÅVVÅVV++V++¨++Ÿ¨+˝+++++V¨◊◊+VÅV˛¨◊¨◊¨++V+˛˛+˛VÅVVŞV˝Å¸¨Å◊¨◊˛¨◊¨Å¸¨
  134. ◊¨◊¨◊¨◊¨◊¨◊¨¨Å˛¨Ũ¨◊˘¨    ÅŨÅVÅŨŨ∞›¨ ◊Å+++VV++˛VŨ◊ÅV+ÅVŞ+¨¨++V+V+VÅ+VV+V++V˝Å VV+ÅVÅVÅÅV+ÅÅ˝+¨¨˛◊V˛+¸+V++Å◊¨◊+ÅVÅ◊¨˝◊VV˝+V+V+V˛ÅV˝Å+VV˛¨Å◊¨◊¨◊¨◊˛¨◊¨◊Å◊˛¨◊¨˙◊¨◊˚¨Ũ¨¸◊˛¨Ũ¨Å¨Å˛¨Ũ¨¬ōŞ¨Å˛¨Å˛¨Å˛¨ÅÔ¨V++¸+V+VV¨◊¨++VÅV+VŨ++˛V++VV˛+VV+++˛Å˚V +VÅV++ÅV+V˛¨◊Å++¸+˝+&¨¨◊¨V++V¨¨◊¨◊◊Å+++++VV+VÅVÅV¨ÅÅV+ů¨◊¨¨Å¨¨◊˝¨Å˝¨◊¨◊¨◊¨◊¨◊ŨŨ¨ÅŨ¨◊¨◊˝¨ Ũ¨ÅŨV¨Å¨Å¨©›¨◊˚++V+˝V
  135. ÅÅ◊¨++ÅVÅ+V¨¨˝+˛V+ÅVV˛V++VŨ˝Å˛V++VV++Å˝+Å◊¨◊¨Å¸+V˛+ V+Ũ◊◊¨V+V¨¨˝◊¨+++++VÅVV+¨ÅÅVÅŞVVÅ˝¨◊¨◊Å◊¨◊˛¨◊˛¨◊¸¨˙◊¨◊˝¨ŨŨ¨˛◊¨◊˚¨Å¨¨ÅōōūōōōōŞ¨Å˛¨Å˛¨Å˛¨Åı¨++++˝+V+Å+Ũ◊+˛V+VÅ◊++VÅ+VÅV++˛V+V˛Å+V+V+V+˛V V++++¨¨◊¨¨˝+˚+
  136. VV+Ũ¨◊ÅVި◊¨◊V++++ÅVÅ+VÅÅVÅVÅ+VV˛¨ÅÙ¨Å˚¨◊¨◊¨◊¨◊¨◊˝¨Ũ¨ÅÅ◊¨◊¨◊¨¨Å¨Å¨Å¨Å¨˛Å¨Å¨Æ·¨◊˛¨◊˙+V¸VŨ◊V+˛V++◊◊V˛+ŞVÅVV+˛V++VÅŨ˝V    +VV+VÅV+VV˛+    V¨◊¨◊ÅVV˝+V+ÅÅV+◊¨◊◊¨+V¨◊¨˛◊Å+˝+V+V¸Å¨˝ÅVV˛+ÅÅ◊˛¨◊˛¨◊¨◊¨◊¨◊¸¨◊¨¨¯◊¨¨◊˝¨Ũ◊◊¨˛◊¨¨Å¨Å¸¨ōŎ¨Δ¨¨Å¨Å¨Å˛¨ŨŸ¨ÅÔ¨
  137. +++++˝V+¨Å◊++˛V+V¨◊Å+VVÅ+ÅVV++VV+VVŨÅV¨˝V˛Å+V˛+VV¨¨◊¨V¸+V+VÅÅ+V¨◊¨◊VŨ¨◊¨◊◊+++˝+ÅŨV˛ÅVÅ+V+++ިŨ¨◊Ũ¨◊˘¨Å˝¨◊¨◊¨˛◊¨◊˝¨ ŨÅŨ◊¨◊¨◊¨¨˛Å¨Å¨Å¨˛Å¨Å¨¢‹¨+˙+¸VŨ◊V+˛V+V◊¨◊˛+ÅÅVVÅ+˝V˛+VÅÅ◊ŞV+ÅVVŨ˝VVV¨¨◊◊Å˚+V+VVŨÅ+Å◊¨◊◊+◊¨◊¨◊◊Å++˛V
  138. +ÅŨÅVVÅÅVV˛+V˚¨◊˛¨◊˛¨◊¨◊Å˚¨¯◊˛¨◊¸¨˛◊¨◊¨◊¨ÅިŨ˛Å˛¨ÅÀ ōōōōōōŞ¨Å˛¨ÅÚ¨ V+++++˝V/+VÅ◊++VÅ++Ũ◊◊VVVÅ+ÅVV+VV++ÅV¨¨ÅÅV+ÅV¨V¨ÅVV˛+'ÅŨ¨◊++V++VŨ¨VŨ¨◊ÅV¨◊¨◊¨¨+++˛V+¨˛ÅVÅVV++˛VÅ˘¨◊¨¨Å◊˚¨Å˝¨◊¨◊¨◊¨◊¨◊˝¨ŨŨ¨◊¨◊˝¨V¨Å¨Å¨˛Å¨Å¨Å¨≥¨◊˚¨◊V++¸+VVÅ+ÅVŨÅ+VV++V¨˛◊V+VÅÅ˝VÅÅ+˛+Ũ¨◊Å˝VÅÅ+VÅÅV+V+VŨ¨◊¨˘+Vި
  139. V+Å◊¨◊+VÅ◊¨˛◊V+˝+    VVÅVÅŨÅVŞV˛+
  140. ÅŨ¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊¸¨¯◊¨◊¨◊¨Å¨Å¨˛◊¨◊¨¨ÅŨ¨Å˛¨Å˛¨Ũ¨∂ōŞ¨Å˛¨Å˛¨Å˛¨Å¨˛+++˛+¸VÅV¨¨+VÅVVŨ◊◊ÅVÅV+V+ÅVV++ÅŞ¨VÅ+ÅV++VV+V++Ũ◊◊Ÿ++V˝¨
  141. V¨¨◊¨+Ũ¨◊¨◊V˛++¸V˛Å¨+˛V˛++VÅͨ◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨V¨◊◊¨◊¨¨Åި
  142. ÅŨŨŨŨŨ±fl¨◊++V++˚+˛V+VV¨ÅÅ+ÅV+VÅÅ◊¨◊V+V¨+˝ÅV˚+ŨÅ◊ŞVÅÅ+˛V+V++V˛¨◊+VV¸+ V¨◊¨¨V¨◊◊V+◊˛¨◊¨++˛+˛VÅV˝ÅVV++˝+ÅÅ◊˛¨◊˛¨◊¨◊¨◊¨◊¨◊˛¨◊¨◊¨¯◊
  143. ¨◊¨◊Ũ¨Å¨◊¨˛◊¨¨◊◊¨¨Å¨Å˛¨Å˛¨Åƒ ōōōōōōŞ¨Å˛¨ÅÙ¨Å+˛+    ++++VÅ+˛V˛Å"+VÅVŨV¨VÅ+VÅVVÅVÅ++++¨Å¨¨Å+VV˛+ ÅV++V+Ũ¨◊¨¯+V¨¨◊Å++◊¨◊ÅŨ¨◊¨V+˛+¸V˝Å
  144. +++++VVިŨ¨◊ň¨Å˝¨
  145. ◊¨◊¨◊¨◊¨◊¨◊˝¨ŨV◊¨◊¨◊¨¨Å◊¨¨Å¨Å¨Å¨Å¨Å¨Å¨∞¨◊¸¨Å˚+V¸+ÅVV+˝Å¨+Ũ+V¨V¨+¨◊+V¨+ÅÅV˙+ VŨ¨◊ÅVÅ+VV+˛V¸+
  146. ¨¨◊◊ÅVVV˛+ Ũ◊¨¨+Å◊◊¨+Å◊˝¨++++V+V¸Å¨¨ÅV˛+
  147. ++V++Å◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊¨◊¸¨˛◊¨¸◊¨◊¨◊¨¨Å◊ÅÅ◊◊¨◊¨◊˛¨◊˝¨Å◊˝¨Åˇ¨∑¨¨Å˛¨Å˛¨Åͨ˛++V˛+V+VV+VÅÅVVÅV+VVV◊¨++VV+V+˛V¸+V+ÅŨ¨ÅV¨+¨V++V˛+V++˝¨˘++Å◊¨◊¨V+◊◊++¨¨◊¨¨V˝+V+VV¨VV˛ÅVV+++VV++¨¨◊˛¨◊˛¨◊¨◊˘¨Å◊˛¨◊¨˛◊¨◊¨◊¨◊¨◊ިV◊¨◊˜¨Å˛¨ŨŨŨ™·¨◊Å++V˝+˛+¸V˛Å
  148. +¨VVÅŨ◊¨◊+VV+˝ÅV¨VÅ+ÅV++VŨ¨◊ÅVV+ÅV+ÅÅ+V˛+◊˛¨¯+V¨˛◊¨+Ũ◊Ũ◊¨¨V++++˛VŨ˝ÅVV++˛V+Ũ◊˛¨◊¨◊¨◊¨◊˛¨◊˛¨◊¸¨¯◊¨◊¨◊˝¨Ũ◊◊¨◊¸¨◊˛¨Å˝¨Å˛¨Å–ōōōōŞ¨Å˛¨ŨŨÅ˙¨Å˝¨
  149. ++++++++˛V +ÅVÅVVÅÅ+ÅVިV+Å+VVÅ+VÅÅV+VV+V+˝¨V+V¸V++V+V◊Å+VVÅVV++˛VÅŞV¨V+V˛¨Å+˝+˛V+¨ÅÅV+VV¸
  150. +VV++Å◊¨◊¨◊˘¨Å˛¨Å¸¨Å◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å¨¨ÅÅ◊¨◊¨¨Å¨¨◊˛¨
  151. Ũ¨Å¨Å¨Å¨Å¨≤·¨Å˝+V˛VV˛+˛VŨÅÅVÅÅ+VÅÅ◊¨◊Å˝VÅVÅŨVV+Å˝VÅ◊¨◊ÅŞV¨V+VV˝+Å◊Å+˛¨◊¨V++˛VÅÅ◊¸¨VVިV˛+VVÅVV¨¨VV+V++++˛VÅ◊¨◊˛¨◊˛¨◊¨◊¨◊¨◊¨◊¨¨Å◊¨◊¨◊¨¯◊¨◊˝¨Ũ˝◊˛¨◊¨◊¨¨Å◊˚¨Åˇ¨Δ¨¨Å˛¨ōōިÅÒ¨◊++V˚+
  152. V+V+ÅŨVVŨ+V˛Å˛¨+V+˝VŨV+˛V+V+¨¨◊¨V++V◊¨¨++˛VŨV¨◊˝¨˛+V+VŸ¨VÅ+ÅV¨ÅŞ++VV˛Å¨VV++++VŨV¨¨◊˛¨◊¨◊Å˚¨◊˛¨◊Å˝¨◊¨◊¨◊¨◊¨˛◊¨◊¸¨Ũ◊¨◊˛¨◊˝¨ Å◊¨¨Å¨Å¨Å¨Å¨Ø„¨◊Å˚+VV¸+VÅVV¨¨Å¨VÅÅVVÅŨ¨◊◊+˛VÅVÅŨVV+ÅVV+V¨◊¨◊VÅ+˝¨ Å++VV+Å◊ÅÅ◊¨◊˛¨
  153. +V++VV¨Å◊¨¨˛Å+ި˙+VŨÅÅVV++++++VŨÅŨ◊¨◊¨◊¨◊˛¨◊¨◊˛¨◊˙¨˛◊¨˜◊¨¨◊¨¨Å˛◊˛¨◊¨◊¨¨Å˛◊¨Å¨¨Å¨Å¨Å‹ōōŞ¨Å˛¨Å˛¨Å˛¨Å˛¨Å˛¨Ũ¨V¸+V+V˛+˝V¨Å¨VVÅÅ++˛ÅP¨¨◊+ÅV++ÅŨVV++ÅV+V+¨¨◊¨ÅV+¨VV◊ÅVÅVV¨◊+¨¨◊¨◊¨V+V+VÅŨ¨◊ŨVV+ŨÅV+++VVÅÅV+V++˛ ++VVŨÅŨ¨◊˛¨◊˛¨◊¨¨Å˙¨ŨŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊ިÅŨ◊¨¨Å¨¨◊¨¨Å¨◊◊¨¨Å¨Å¨Å¨Å¨∂Ȩ◊˚¨++V¸+V˛+V++VÅ+VŨ¨ÅVŨV+˛Å¨◊◊˝VÅÅ◊ŞV+Å+˛V¨◊¨◊VV+¨Å˛¨++VÅ◊¨V◊¨¸◊    V+V+VÅŨ¨◊˛¨    ÅVVŨV++V˛+V¨ÅŞV˛+˛+VVŨ¨Å◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊˛¨◊˝¨◊◊¨ˆ◊¨◊¸¨◊¨◊˛¨◊◊¨Å˛◊¨◊˚¨Åˇ¨º¨¨Å˛¨Å˙¨ÅÛ¨◊+˙+V++V˛+˝VŨ¨VÅŨV+˛Å!¨¨◊ÅV+VVŨV+V+VÅ++VV¨¨◊¨VV+ÅÅ+¨V++˛¨V◊¨◊¨◊¨◊¨V++ÅVÅ˝¨Ũ˛V    ¨Å++++V+˛ÅV++V˛+˛+ VÅŨV¨¨◊¨◊¨◊Ó¨◊˛¨◊¨˛◊¨˛◊˛¨◊¨¨Å¨¨◊¨¨Å◊¨¨Å¨◊◊¨◊¨¨Å◊ŨŨŨπ¸¨ÅΨ◊Å+V˛+V+VV˝+VÅ+ÅŨ¨¸Å+ÅŨÅ◊¨◊˛V˛¨ +VÅV+¨+VVŨ◊¨¨VÅÅÅ◊¨V+◊¨◊V◊¨◊¨◊¨˛◊V˛+VÅŨ¨◊˝¨˛Å˝+˝VÅVÅ˝+˝+V˝Å¨¨◊¨◊˛¨◊˛¨◊¨◊Å◊¨◊Å◊¨¨Å◊¨◊¨◊¨ˆ◊¨◊¨◊Ũ¨˛◊¨◊˝¨◊◊¨˛◊Å◊¨¨Å˛¨Å«Å¨Å¨Å¨Å¨Å˙¨Å˛¨Å˘¨+˛+˝+V+VV++VV+V¨Å¨V˝ÅV+¨Å¨¨◊¨V+VŨÅV+V++Å++ÅV¨¨◊¨V˝+V+V◊¨¨VŨ◊¨◊¨◊¨◊¨V˛+VV¸¨ŨÅVŞ+    ++Å+ÅVV++¸ ++VVVÅŨÅ◊¨◊˛¨◊¨◊Å˚¨◊Å˘¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊˝¨Å˝¨Å¸¨◊˛¨
  154. ◊¨Å¨¨Å¨Å¨Å¨≤‰¨++V˝+VV++V˝+VÅ+¨Å¨¨Å¨¨Å¨VVōŞ◊$ÅVV◊V¨+VÅVV¨+VVŨ◊◊¨VV+V++Å◊¨◊Ũ◊◊¨◊¨¸◊    V++VÅŨ◊¨◊˛¨Å+Å++V˝+VŸV++V+V+VŨÅ◊Ũ¨◊¨◊Å◊¨◊˛¨◊˙¨◊¸¨◊¨ˆ◊
  155. ¨◊¨◊¨¨Å¨◊◊¨◊¨◊˛¨˛◊¨◊˛¨◊ިŨ¨…ōŞ¨Å˛¨Å˙¨Å¯¨V˛+˛+++V+V+V+ÅV+ÅŨ¨Å˛¨˝Å¨Å˛¨ÅVŨVÅVVÅ++Å++ÅV¨¨◊ÅV+V+V◊◊˛¨
  156. V¨◊¨◊¨◊¨◊¨◊◊ŞVŨ¨◊˛¨◊˛V +V+VVÅ+V+V˛+˛+˛V˛Å¸¨◊˛¨◊˛¨◊˚¨Å◊¨¨Å◊Å˝¨◊¨◊¨˛◊¨◊¨◊¨◊˝¨Å◊˙¨◊¨◊˛¨
  157. ◊Å◊¨¨Å¨Å¨Å¨≥¨++˛++V˛+ VV++V+V+Åōި˛Å    VV◊¨◊¨◊ÅV+˛Å
  158. VVÅ++¨+VVŨ◊◊¨˛+V◊◊¨◊¨¨V◊¨◊¨◊¨◊¨˛◊    VV+VV¨¨◊¨◊˛¨˛V˝++˛V++V+++++VVÅ+ÅŨÅ◊¨◊¨◊˛¨◊¨◊˛¨◊˛¨◊˛¨◊¸¨◊¨ˆ◊¨◊¨◊˝¨◊◊¸¨¸◊˝¨◊◊¨¨Å˛¨ÅŒÅ¨Å¨Å¨Å¨Å˛¨Å˛¨Å˙¨Ũ¨++++V++V+VV+++V+V¸Å    ¨ÅÅV¨VVōި7+VÅŨVÅV+VÅ+VVŨ¨◊ÅV+Å◊¨¨◊◊¨+¨¨◊¨◊¨◊¨◊¨◊◊¨+VVÅÅ◊¨◊¨◊¨◊+V˛+V++V+V+++++V+Å+VVÅÅ˙¨Å¯¨Å˝¨◊¸¨◊˛¨◊¨◊¨◊¨˛◊    ¨◊¨◊¨¨Å¨¨◊¸¨◊¨◊¨◊¨¨Å¨Å◊¨¨Å¨Å¨Å¨§Ê¨˝+
  159. ÅV+++VVÅV+V+˝V¨Å◊˙¨˛Å
  160. ¨¨◊¨¨V+Å◊ŞVÅŞō◊◊¨VV◊◊¨˛◊V◊˛¨˛◊¨¸◊Å+VŸ◊¨◊◊++VV˝+˝V˛+ ++VÅVÅÅ+VŸ¨◊¨◊˛¨˛◊¨◊¨◊¨◊˛¨◊˛¨◊¨◊¨¨Û◊¨◊˛¨˛◊˛¨¸◊¨◊¨¨Å˛◊¨Å¸¨ª¨¨Å˛¨Å˙¨Å˜¨◊˝+ÅVV˝+VV¸+V+VÅ˙¨
  161. ŨÅÅVŨ◊¨¨+VŨ˛+VVV+VÅŨ¨◊ÅV+ŸV◊¨◊˛¨◊¨◊¨◊¨◊◊Å+VŨÅ◊˚¨˛+V+˛+    V+++VV+¸V+ÅŨŨŸ¨Ũ¨◊˙¨◊Ũ¨◊Å˚¨◊¨˛◊¨˛◊¨˛◊¨◊¸¨◊˛¨◊¨◊¨◊˝¨Å¨¨◊¨◊ōި∂˨Å++V˛Å++˝+VVÅV+˝V¨Å¨Å◊˚¨˛Å    ¨¨◊¨VVÅÅV+˝V Å+VÅŨ◊◊Å+VV˝¨˛◊¨◊¨◊¨˛◊¨◊◊¨+VŨ◊¨◊¨◊¨◊¨+VV+˛V
  162. ++++VV+VÅVV+V˛Å
  163. ¨Å¨¨◊¨◊Å◊¨◊˛¨◊˛¨◊˛¨◊¸¨◊¨◊¨˛◊¨˜◊¨¨◊Å◊¨◊¨¸◊¨◊¨◊Ũ¨˛◊¨¨Å˝¨œÅ˛¨Å˛¨Å˛¨Å˛¨Å˛¨Å˝¨    V+VÅÅV+˛+˝V˛+VVV¨Å¸¨Ũ¨˛Å˛¨◊+VVÅ˝V"VV+VÅŨ¨◊ÅV+ÅŨŨ¨◊¨◊¨◊¨◊¨◊¨◊¨◊++V˝Å◊¨◊¨◊¨¨+V+++V++˛+VV+VV+˛VÅŨŨŨ¨◊˙¨◊˙¨◊¨¨Å˚¨◊¨◊¨˛◊¨◊¨◊¨◊¨◊ި◊◊¨◊¨◊¨◊¸¨ÅŨ¨◊¨◊˛Å¨Å¨∏Ȩ◊++VŞV+V++VÅVV+VV+VV¨¨◊¨◊¨◊˛¨◊ŨŨ¨◊¨V˛Å¨VÅVVÅV+ÅŨ¨◊◊ŞVŨ◊¨◊¨˛◊¨◊¨¸◊¨+V¨¨◊˛¨◊¨◊¨◊Ş+++Ÿ+˛V+VÅVVÅ+ÅŞ¨Å◊¨◊˛¨◊¨◊˛¨◊˛¨◊¨◊¨◊¸¨◊¨˛◊¨ˆ◊¨¨◊¨¨◊¨˙◊¨◊¨◊Ũ¨˛◊¨¨Å˝¨∫¨¨Å˙¨Åı¨◊V˛+˛VÅ++˛+VVÅ+VV˝+ÅŨů¨˛Å¨¨◊˛V1ÅÅV+VÅ++V¨Å¨¨◊VV++V¨¨◊¨◊¨◊¨◊¨◊¨◊¨◊◊Ũ¨◊¨◊¨◊¨◊ÅV+˝+VV+++V+VV+VÅ+V+VÅŨ¨V˛¨ŨÅ◊Ù¨◊¸¨◊˛¨◊¨◊¨◊¨˛◊¨◊¨◊˛¨◊Å˝¨◊¨◊¨◊˙¨◊¨◊˝¨ŨŨπȨ˛+˛ÅV+++VV+ÅV+VV+V+VÅ˝¨◊¨◊¨◊¨◊¨˛Å¨◊◊¨V¨VÅVÅVVÅVV˝¨
  164. ◊◊Å+V+VŨ¨◊˛¨◊¨◊¨¸◊VŨ˛◊¨˛◊ V++++V¨V¸+VV+Å+˛VÅVVÅV¨¨Å˙¨◊¨◊¨◊˛¨◊˛¨◊¨◊Å◊¸¨◊¨˙◊¨˛◊¨◊¨◊¸¨˛◊¨◊¨◊Ş¨Å˛◊¨◊¨¨Å˛¨ÅΔōōŞ¨Å˛¨Å˜¨V+¨˛V++˝+˛V
  165. +VV+V++ÅŨŨ¨◊˛¨◊¨¨˛Å˝¨+ÅÅ++VV+¨VŨŨ¨◊ÅV+V+VV˚¨◊¨◊◊¨¨◊¨VÅ◊¨◊¨¨V+˛+¸+Ũ+¸+ ÅVÅV+VV+ÅÅV˛ÅV¨Å˝¨◊¨◊˘¨Ũ¨◊Å˚¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨◊¨¨Å◊Å◊¨◊¨◊˝¨ŨŨ¨◊˛¨◊ŨŨŨØÍ¨    +ÅVVÅÅ+V˛+#VVVÅ+VÅV+V+VŨŨ¨◊¨◊¨◊¨◊¨◊ÅŨ◊¨◊V¨Å˛V ++¨+ŨŨ¨◊◊¨+˝VŨ◊¨◊¨¯◊3Ũ◊◊¨V++V+++++ÅÅ++V+VÅ+ÅÅ+V++Å++ÅVŨŨ¨◊¨◊¨◊¨◊˛¨◊˛¨◊˛¨◊¸¨◊¨◊¨Ú◊¨◊˝¨˝◊¨◊˙¨˛◊¨◊¨¨Å˝¨ƒ¨¨Å¨Å¨ÅÛ¨◊V+++˛Å
  166. +V+++V++V++VÅ˝+VŨ◊Ũ¨◊˘¨Å˝¨ ÅV¨++VÅÅ+ÅÅ˝¨ ◊Å++VV+ÅŨ◊¨◊˛¨
  167. ◊¨◊¨◊¨ÅÅ◊¨+˝+˝+VV+¸+˝V++ÅV++˛Å¨ÅŨ¨◊˛¨◊˛¨◊¨◊¸¨◊¨¨Å◊Å˝¨◊¨◊¨˛◊¨◊¨◊¨˛◊
  168. ¨◊¨¨Å¨¨◊¨¨Å˛¨Å˚¨
  169. ◊¨◊¨¨Å¨Å¨Å¨≥Ψ++VÅŞV¸+˛V    +ÅVVV+Ũ◊˛¨˛◊¨◊¨◊¨◊¨ÅŨ◊◊¨VÅVVÅVV¨+ÅŨ◊¨◊◊¨Å˛V VŨ◊◊¨◊¨◊¨◊¨˛◊Ũ¨++++¸V+˛V+++V˛+ÅVŞ+VVÅÅV¨˛Å˚¨◊¨◊˛¨◊˛¨◊¨◊¨◊¸¨◊¨˛◊¨ˆ◊¨˛◊˛¨˛◊˛¨◊˙¨˛◊¨◊¨¨Å˛¨ÅƒÅ˛¨ōōŞ¨Å˘¨V+VV¨ÅVV+++++V+VÅÅ˝+ V¨¨◊Ũ¨◊¨◊¨◊˛¨◊˛Å◊¨◊˝V+V¨+ÅÅ˝¨◊VV+VV¨Å¨¨◊¨◊˛¨◊¨◊˛¨V+˛+VÅVÅVVÅ+˛+V+VV+V˛+ VVÅ++VVŨÅVÅÍ¨Å˝¨ ◊¨◊¨◊¨◊¨◊¨◊¨◊˛¨◊¨¨Å¸¨Å˛¨ŨŨŨ¨◊¨◊¨¨Å¨Å¨Å¨
  170. d°dONLNdD∏√t(fl6FORREST TANAKA, Palatino
  171. °dONLNdS›È*&0Most people who’ve done any graphics programming°dONLNdÑÈı* 2on the Macintosh are aware of the Palette Manager,°dONLNd∑ıÙ* 1because it’s the documented way to control the on°dONLNdËıÙ¯)‹-°dONLNdÈ
  172. ˜()60screen color environment, and perhaps because my°dONLNd
  173. ¸* 1cohorts and I in Developer Technical Support keep°dONLNdL%Í* .going on about how right the world would be if°dONLNd{%1˘* 5everyone used it. In an effort to follow the rules as°dONLNd±1=˚* 1best they can, some people have taken the Palette°dONLNd„=I˚* 2Manager so much to heart that they use it not only°dONLNdIUÒ* /with windows, but with off-screen cGrafPorts as°dONLNdFUa* 0well—something that isn’t heard about very much.°dONLNdwam¯* 0Some of these people have concluded that all the°dONLNd®my* 5features of the Palette Manager apply just as well to°dONLNdfiyÖ* 4off-screen cGrafPorts as they do to windows. Logical°dONLNdÖëZ* enough, right?°dONLNd"ó£*6Well, that’s the kick; whether this is logical or not,°dONLNdY£ØÙ* 2the truth is that only a small part of the Palette°dONLNdåØªŸ* )Manager works with off-screen cGrafPorts.°dONLNd∂ª«¸* 0Specifically, the pmCourteous usage mode and the°dONLNdÁ«”* -pmWhite and pmBlack usage-mode modifiers work°dONLNd”fl* 3fine when they’re used in a palette that’s attached°dONLNdIflÎÈ* /to an off-screen cGrafPort, but the pmTolerant,°dONLNdyΘ* 1pmAnimated, and pmExplicit usage modes do not. In°dONLNd´˜◊* +this column, I’ll describe how you can take°dONLNd◊Ú* .advantage of the Palette Manager features that°dONLNdÂ* ,work off-screen and how you can simulate the°dONLNd3'â* features that don’t work.°dONLNdM-9*2The pmCourteous usage mode seems pretty useless to°dONLNdÄ9E* 7a lot of people because it has no effect on the current°dONLNd∫$ˇ(@63color environment. But in general, making a palette°dONLNdÓ$0˚* 4full of pmCourteous colors is a lot better than hard°dONLNd"$˚0ˇ)„-°dONLNd#0<Ù(X60coding RGBColors into your code. Instead of hard°dONLNdS0Ù<¯)‹-°dONLNdT<H(d64coding colors, make a palette of courteous colors—as°dONLNdâHTÛ* 0many entries as you need colors—and save it as a°dONLNd∫T`* 1'pltt' resource. When your application runs, call°dONLNdÏ`l˝* 4SetPalette to attach this palette to your off-screen°dONLNd!lxÁ* -cGrafPort. When you need to use a color while°dONLNdOxÑ* 5drawing into this cGrafPort, pass the desired color’s°dONLNdÖÑê˛* 0palette index to PmForeColor or PmBackColor, and°dONLNd∂êúˆ* 1then draw. This is better than hard-coding colors°dONLNdËú®* 5because you or a software localizer can easily change°dONLNd®¥¯* 2the colors by changing the 'pltt' resource—no code°dONLNdQ¥¿}* changes are necessary.°dONLNdhΔ“¸*,The pmWhite and pmBlack usage-mode modifiers°dONLNdï“fi›* +are new with System 7; they let you specify°dONLNd¡fiÍ* 2whether you want a particular palette entry to map°dONLNdÙ͈Ú* /to white or black in a black-and-white graphics°dONLNd    $ˆÎ* -environment. By default, colors whose average°dONLNd    RÈ* .color-component value is larger than 32767 are°dONLNd    ÅÛ* .mapped to white and other colors are mapped to°dONLNd    ∞&˝* 0black. (If you use RGBForeColor, Color QuickDraw°dONLNd    ·&2Ù* 2also checks to see whether your specified color is°dONLNd
  174. 2>* 5different from your background color but maps to your°dONLNd
  175. J>Jˆ* 1background color; if so, Color QuickDraw uses the°dONLNd
  176. |JV˘* 2complement of the color you specified so that your°dONLNd
  177. ØVb›* +drawing is visible over the background.) By°dONLNd
  178. €bnÚ* 0specifying that a palette entry is pmCourteous +°dONLNd nz* 1pmBlack or pmCourteous + pmWhite, you can control°dONLNd >zÜ* 1which colors map to black and to white when there°dONLNd pÜíÎ* /aren’t enough colors available. This applies to°dONLNd †íû* 5palettes attached to off-screen cGrafPorts as well as°dONLNd ÷û™≠*  to palettes attached to windows.°dONLNd ˜∞ºÔ*.Those are the Palette Manager features that do°dONLNd &º»Û* 1work off-screen. Now I’ll talk about the features°dONLNd X»‘Í* .that don’t and what you can do to get the same°dONLNd ᑇ5* effect.°dONLNd èÊÚ*0The pmExplicit usage mode is handy when you want°dONLNd ¿Ú˛Ï* .to draw using a pixel value without knowing or°dONLNd Ô˛
  179. * 3caring what color that pixel value represents. With°dONLNd
  180. #
  181. * 6this mode you can easily show the colors in a screen’s°dONLNd
  182. Z"* 5color table, and you can also draw into a pixel image°dONLNd
  183. ê".˘* 1with a specific value even though you specify the°dONLNd
  184. ¬.:§* color for that value elsewhere. x4x&, New York
  185. +Ô% 
  186. +
  187. 29
  188. (è6FORREST TANAKA)K% has been playing Developer Technical(ô6?Support as one of the graphics support people for slightly more*
  189. Athan two years. “It amazes me still,” he says, “that the more you*
  190. ?learn about the Macintosh graphics tools, the farther off total*
  191. @understanding seems to be.” Outside of DTS, he likes to ride his*
  192. Gbike, and uses it to commute the three blocks to his office (“Hey, it’s*
  193. Hfaster than driving the three blocks!”), and he likes to try getting his*
  194. <radio-controlled car to act as if it’s actually controlled.•(è6PRINT HINTS FROM LUKE & ZZ)x is in hibernation.•
  195. (ÚÏAGRAPHICS HINTS FROM FORREST: USING THE PALETTE MANAGER OFF-SCREEN(Ú  
  196. ) Winter 1992ˇÙ◊#ˇ ˇˇˇˇ#◊ 
  197. d, Palatino
  198. .°dONLNd$˝+6@1When you have a palette that’s attached to an off°dONLNd1˝$)Â-°dONLNd2$0¸(L63screen cGrafPort, pmExplicit colors are interpreted°dONLNdf0<* 6as pmCourteous colors. Instead of using a palette, you°dONLNdù<H* 2should convert your pixel value to an RGBColor and°dONLNd–HT˜* 3use this as the foreground or background color. Set°dONLNdT`ı* 1the current GDevice to your off-screen GDevice so°dONLNd6`l* 1that the color environment is set; then pass your°dONLNdhlx* 2pixel value to Index2Color, which is documented on°dONLNdõxÑL* page 141 of °dONLNdßxLÑö)4Inside Macintosh°dONLNd∑xöÑ)N Volume V. Index2Color°dONLNdŒÑêÊ(¨6.converts your pixel value to the corresponding°dONLNd˝êú¸* /RGBColor, which you can pass to RGBForeColor or°dONLNd-ú®* 2RGBBackColor, and then you can draw. The result is°dONLNd`®¥˛* 3that your pixel value is drawn into the destination°dONLNdQ* pixel image.°dONLNd°Δ“*.Both the pmAnimated and pmTolerant usage modes°dONLNd–“fi¸* 2are used to modify the color environment, and both°dONLNdfi͘* 0are interpreted as pmCourteous when they’re in a°dONLNd4͈˚* 3palette that’s attached to an off-screen cGrafPort.°dONLNdhˆÌ* -The most important difference between the two°dONLNdñ* 6usage modes is in the style of color-table arbitration°dONLNdÕ˝* /that they do— pmTolerant gives the front window°dONLNd˝&* 2the colors it needs, while pmAnimated additionally°dONLNd0&2* 3makes sure that nothing outside the front window is°dONLNdd2>˚* 4drawn in its colors. Color-table arbitration doesn’t°dONLNdô>J—* 'apply off screen, so the pmAnimated and°dONLNd¡JV˛* 2pmTolerant usage modes can be unified into “I want°dONLNdÙVb•*  to change my off-screen colors.”°dONLNdht–**Changing the colors in an off-screen color°dONLNd@tÄ* 4environment means changing its color table; the most°dONLNduÄå* /straightforward way to do this is to modify the°dONLNd•åò* 7contents of the color table directly. That is, get your°dONLNd›ò§Ò* 1off-screen color table’s handle and then directly°dONLNd§∞À* *assign new values to the rgb fields in its°dONLNd:∞º* 3CSpecArray. You could also assign a whole new color°dONLNdnº»* 4table to the off-screen environment by assigning the°dONLNd£»‘Ê* .new one to the pmTable field of the off-screen°dONLNd“‘‡⁄* *pixMap. Either way, you have to tell color°dONLNd˛$È(@6*QuickDraw what you’ve done by updating the°dONLNd)$0* 5changed color table’s ctSeed field. The next time you°dONLNd_0<Ô* /draw into your off-screen graphics environment,°dONLNdè<H* 0Color QuickDraw detects your change by comparing°dONLNd¿HT˘* 2the ctSeed of your changed color table against the°dONLNdÛT`* 4iTabSeed of the current GDevice’s inverse table, and°dONLNd(`l‡* .it rebuilds the inverse table according to the°dONLNdWlx* 4changed color table. You can update the ctSeed field°dONLNdåxÑÚ* 1by assigning to it the return value of GetCTSeed,°dONLNdæÑêπ* #which is documented on page 143 of °dONLNd·Ñπê’)°Inside°dONLNdËêúJ(∏6
  199. Macintosh °dONLNdÚêJúÏ)2!Volume V. If the 32-Bit QuickDraw°dONLNd    ú®Ô(ƒ60extensions are available, you can update a color°dONLNd    E®¥˘* 3table’s ctSeed simply by passing the color table to°dONLNd    y¥¿fi* )CTabChanged, documented on page 17-26 of °dONLNd    ¢¥fi¿˙)ΔInside°dONLNd    ©¿ÃJ(Ë6
  200. Macintosh °dONLNd    ≥¿JÃ~)2
  201. Volume VI.°dONLNd    æ“fiˆ(˙60If you have a GWorld and you want to replace its°dONLNd    ÔfiÍ* 2color table, you should call UpdateGWorld, passing°dONLNd
  202. "͈* 2it a new color table. UpdateGWorld makes sure that°dONLNd
  203. UˆÈ* -all the cached parts of a GWorld are properly°dONLNd
  204. É* 3updated, which is tough to do any other way. If you°dONLNd
  205. ∑¸* 1don’t pass any flags to UpdateGWorld, it’s within°dONLNd
  206. È&¸* 3its rights to destroy your existing GWorld’s image.°dONLNd &2„* /But if you pass the clipPix or stretchPix flag,°dONLNd M2>˜* /UpdateGWorld is obligated to keep your existing°dONLNd }>J* 6image, and it tries to reproduce the existing image in°dONLNd ¥JVñ* the new colors as best it can.°dONLNd ”\h˘*0To wrap up, you can use the Palette Manager with°dONLNd ht˛* 4off-screen graphics environments, but you’ll only be°dONLNd 9tÄÔ* .able to use the pmCourteous usage mode and the°dONLNd hÄå˝* -pmWhite and pmBlack usage-mode modifiers. But°dONLNd ñåòÂ* 0that’s not to cast aspersions on these features,°dONLNd «ò§˜* 1because they can be very handy for both on-screen°dONLNd ˘§∞Œ* 'and off-screen drawing. The pmExplicit,°dONLNd
  207. !∞ºÛ* ,pmTolerant, and pmAnimated usage modes don’t°dONLNd
  208. Nº»* 4work for off-screen drawing, but there are easy ways°dONLNd
  209. É»‘Í* .to simulate those features without the Palette°dONLNd
  210. ≤‘‡˛* 1Manager and without risking future compatibility. x4x/, New York
  211. ({ ,     Helvetica
  212. +
  213. 30
  214. +
  215. For more details)<- about changing or replacing off-screen color(ô6@tables, see the October 1991 version of Macintosh Technical Note*
  216. 4#120, “Principia Off-Screen Graphics Environments.”•
  217. *Od)e)v)e)l)o)p)  
  218. ) Winter 1992ˇ